sivakumar murugesan

sivakumar murugesan

  • 1.4k
  • 198
  • 545

Ajax Call with cache web service url

Nov 21 2017 5:12 AM
Hi,
 
im integrated ajax call with cache webservice url follow this below code some issue occured..Any idea 
     
var inpString = "AllProfile";
$.ajax({
url: 'http://localhost:57772/csp/user/%25SOAP.WebServiceInvoke.cls?CLS=WebService.MobileHybrid.Service&OP=GetAllUserData',
type: 'GET',
contentType: "text/xml",
crossDomain: true,
data: inpString,
cache: false,
success: function (reponse) {
alert("success");
},
error: function () {
alert("error");
}
});

Answers (1)