当我尝试使用jquery Ajax访问时,我有使用.asmx的 Web 服务,它给了我 http 405 的问题,有时 500 是客户端问题的 Web 服务问题,请用示例指导我
$j.ajax({
type: "POST",
//url :'http://Service1.asmx/HelloWorld',
url :webServiceUrl,
cache:false,
async: false,
data: soap xml data,
dataType :"xml",
error:function ()
{
alert("error");
},
contentType:"text/xml; charset=\"utf-8\"",
}).done(function(response){
console.log(response);
alert("Yahoo ");
});
});