我有使用的.asmx,當我嘗試使用jQuery的阿賈克斯它給我的HTTP 405的問題,一段時間500是它的網絡服務問題來訪問Web服務客戶端問題請用示例指導我jQuery的AJAX HTTP 405或500錯誤
$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 ");
});
});
500是服務器錯誤。 405是「方法不允許」。沒有Web服務使用GET請求? – Johnny5
它們是否在同一個域中,您的web服務和網站,或不同的域名? – Liam
亞這些是在同一個域,並請告訴我如何發送數據,如果Web服務除了XML – Hamid