jquery.ajax で Web サービスを呼び出そうとしています。
jQuery.support.cors = true;
$.ajax({
type: 'POST',
url: wsUrl,
contentType: "text/xml; charset=utf-8",
dataType: "xml",
cache: false,
crossDomain: true,
data: soapRequest,
success: reqSuccess,
error: reqError
});
「アクセスが拒否されました」-エラーとステータス / readyState 0 が表示されます。
SoapUI を使用して Web サービスにリクエストを送信すると、非常にうまく機能します。