javascriptでSOAPクライアントを作成しました。問題は、GoogleChromeでのみ機能することです。
コード:
$("#send").click(function (event) {
var wsUrl = "http://myip:8084/Service1.asmx";
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> \
<GetVozilo xmlns="http://mydomain.com/apps"> \
<vin>' + $("#vin").val() + '</vin> \
</GetVozilo> \
</soap:Body> \
</soap:Envelope>';
console.log(soapRequest);
$.ajax({
type: "post",
url: wsUrl,
contentType: "text/xml",
dataType: "xml",
data: soapRequest,
success: processSuccess,
error: processError
});
});
コンソールでは、次のエラーも発生します。
オプションhttp://mydomain.com/Service1.asmx403(禁止)
手伝ってくれませんか?