попробуйте сделать запрос на мыло, используя jquery.Это работает для меня:
var soapAction = this.Namespace + this.Contract + '/' + pMethod;
var soapResponse = pMethod + 'Response', soapResult = pMethod + 'Result';
$.ajax({
type: "POST",
url: this.URI,
data: envelope,
contentType: "text/xml",
dataType: "xml",
beforeSend: function (xhr) {
xhr.setRequestHeader("SOAPAction", soapAction);
},
success: function (pData) {
var answer;
$(pData).find(soapResponse).each(function () {
answers=this.parseResult(($(this).find(soapResult))[0]);
});
onSuccess(answers);
},
error: onError
});