我有一个webservice http://ediblesoftware.com/esxml30/esxml.wsdl?op=Request
的URL,我需要传递如下所示的输入。
这是我的ajax功能,我试图在这里使用服务。
$.ajax({
cache: false,
type: 'POST',
async: false,
data: params,
crossDomain: true,
url: servUrl,
contentType: "text/xml",
dataType: 'xml',
success:successResponse,
error: errorResponse
});
任何人都可以帮助我做错了吗?