0

XMLHttpRequest はhttp://ideone.com/api/1/service.wsdlを読み込めません。Origin null は、Access-Control-Allow-Origin では許可されていません。

この点で私を助けてください

 <html>
<head>
 <title> Web services </title>

<script type="text/javascript" src="jquery.js">
</script>

<script type="text/javascript" src="soapproxy.js">
</script>


<script type="text/javascript">


testob={user:"harisrinivas",pass:"ideonehari"};

function resultcallback(res, xml, text, proxy) {
            alert(res);
        }
        function failurecallback(res, xml, text, proxy) {
            alert("SayHello() failed");
        }
        function gotproxycallback(proxy, wsdl, text) {
            if (proxy instanceof SOAPProxy) {
               //proxy.SayHello(null, true, resultcallback, failurecallback);
               SOAPProxy.prototype.invoke(test, testob, async, resultcallback, faultcallback);

            } else {
                alert("Proxy not created!");
            }
        }
        $(document).ready(function () {
            try {
                SOAPProxyFabric.fromUrl("http://ideone.com/api/1/service.wsdl", true, gotproxycallback);
            } catch (x) {
                alert("Failed to load or parse WSDL!");
            }
        });
</script>

</head>


<body>

<h1> Web service testing by Hari Srinivas </h1>



</body>

</html>

jquery と soapproxy を使用しています ( http://code.google.com/p/js-soap-proxy/ )。何が問題ですか ?どうすればこのエラーを削除できますか..??

4

2 に答える 2

0

サービスを備えたサーバーにアクセスできる場合は、次のサイトの指示に従って、サーバーで簡単にコアを有効にすることができます: http://enable-cors.org/、各タイプの Web サーバーの例があります。

于 2013-05-29T13:38:39.057 に答える