Hola soy nuevo en esto del JQuery
estoy intentando consumir un servicio SOAP con JQuery de esta manera:
var soapMessage=’<?xml version=”1.0″ encoding=”UTF-8″?><soap:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/”><soap:Body><hello xmlns=”http://webservices.renda.datys.cu/”><txt>Hunter</txt></hello></soap:Body></soap:Envelope>’;
$.ajax({
url: “../../soap”,
type: “POST”,
dataType: “xml”,
data:soapMessage,
complete: function(data){
$(“#resultado code”).text(data.responseText);
},
contentType: “text/xml; charset=\”utf-8\”"
});
y logra entrar a la funcion “hello” pero los parametros llegan en null
aqui les dejo el codigo de la funcion hello :
@WebMethod(operationName = “hello”)
public String hello(@WebParam(name = “txt”) String txt) {
String hello = “Hello ” + txt + “!”;
return hello;
}
si alguien sabe que estoy haciendo mal o me falta se lo agadecería mucho , gracias