2

クライアントのログイン コンピューターで XDomainRequest が動作しない理由を誰か教えてもらえますか? 私のIE9と私のサーバーで動作します。サーバーでは動作しますが、IE8 ログインでは動作しません

        function CreateCrossDomainMessage(ExecuteExternalWebServiceClass, EndpointAddress, PostData) {
        alert("Testing XDomainRequest");
        var xdr = new XDomainRequest();
        xdr.open("POST", EndpointAddress); // Does not open on clients computer, works on their servers ????
        xdr.timeout = 2000;
        xdr.ontimeout = function () {
            alert("ontimeout");
        };
        xdr.onerror = function () {
            alert("onerror");
        };
        xdr.onload = function () {
            alert("onload");
        };
        xdr.send(PostData);

// new CrossDomainMessage(ExecuteExternalWebServiceClass, EndpointAddress, PostData); }

4

0 に答える 0