JQuery から Web サービスを呼び出すことができません。
私がアクセスしている URL は次http://www.deeptraining.com/webservices/weather.asmx?WSDL
のとおりですGetWeather
。Firefox を使用していますが、次のメッセージが表示されます。
Firefox コンソール: [19:43:29.849] オプション http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather [HTTP/1.1 200 OK 371ms]
アラート: 未定義のパーサー エラー
コード200を取得した場合、リクエストが正常に送信されたことを意味しますか? 私は何を間違っていますか?リクエストを行う正しい方法は何ですか?ありがとう!!
これが私のコードです:
<html>
<head>
<title>Calling Web Service from jQuery</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#btnCallWebService").click(function (event) {
var wsUrl = "http://www.deeptraining.com/webservices/weather.asmx?op=GetWeather";
var soapRequest ='<?xml version="1.0" encoding="utf-8"?> \
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
xmlns:xsd="http://www.w3.org/2001/XMLSchema" \
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> \
<soap:Body> \
<GetWeather xmlns="http://litwinconsulting.com/webservices/"> \
<City>new york</City> \
</GetWeather> \
</soap:Body> \
</soap:Envelope>';
$.ajax({
type: "POST",
url: wsUrl,
contentType: "text/xml",
dataType: "xml",
data: soapRequest,
success: processSuccess,
error: processError
});
});
});
function processSuccess(data, status, req) {
if (status == "success")
alert('SUCCESS');
}
function processError(data, status, req) {
alert(req.responseText + " " + status);
}
</script>
</head>
<body>
<h3>
Calling Web Services with jQuery/AJAX
</h3>
<input id="btnCallWebService" value="Call web service" type="button" />
<div id="response" />
</body>
</html>