I have a URL for a webservice http://ediblesoftware.com/esxml30/esxml.wsdl?op=Request
and I need to pass input like this below.
This is my ajax function and I am trying to consume service here.
$.ajax({
cache: false,
type: 'POST',
async: false,
data: params,
crossDomain: true,
url: servUrl,
contentType: "text/xml",
dataType: 'xml',
success:successResponse,
error: errorResponse
});
Can anybody help what am I doing wrong?