I have one web service built in .NET SOAP. URLlike http://.../abc.asmx?WSDL
In that i have one function called abc.
So how can i call that webservice because it not directly return me XML.
In WSDL i have to call function then it return me XML file.
Tried using
$.ajax({
type: "GET",
url: 'http://...asmx?WSDL',
dataType: "xml",
success: function(xml) {
alert(xml);
},
error: function(xhr, xml) { alert('else'+xml + '\n' + xhr.responseText); }
});
but it send me to error not success