XDomainRequest打开不在客户端IE8机器上工作

时间:2012-05-09 20:48:56

标签: xdomainrequest

有谁能告诉我为什么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);         }

0 个答案:

没有答案