5

我正在尝试使用窗口 7 中的 Chrome 浏览器访问托管在服务器中的 SOAP 服务。我已经在 SOAPUI 中测试了相同的服务和肥皂动作并获得响应,并且在 android 中使用 icesoap 并从服务器获得正确的响应,现在我希望使用用 java 脚本编写的以下代码在浏览器中获得响应来执行同样,这样我就可以进一步实现,它给了我未定义的错误,即 xmlHttp.status == 0

我在窗口桌面(c:/Users/vipin.sahu.OM/Desktop/New folder/soap.html)中使用并保存为 HTML 文件并在浏览器中运行以下代码

<html>
<head>
    <title>SOAP JavaScript Client Test</title>
    <script type="text/javascript">
        function soap() {   
        var xmlhttp = new XMLHttpRequest();            
        xmlhttp.open("POST", "http://65.17.222.114/t2green/servicecontract/Courses.svc?wsdl", true);
        xmlhttp.setRequestHeader("SOAPAction", "http://tempuri.org/ICourses/GetCountries");
        // build SOAP request
        var sr ='<?xml version="1.0" encoding="utf-8"?>' +
            '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">'+
            '<soapenv:Header/>'+
            '<soapenv:Body>'+
            '<tem:GetCountries>'+
            '</tem:GetCountries>'+
            '</soapenv:Body>'+
            '</soapenv:Envelope>';

        xmlhttp.onerror = function(e) {
        alert("Error ocurred. Error = " + e.message);
        }

        xmlhttp.ontimeout = function(e) {
        alert("Timeout error!");
        }

        xmlhttp.onreadystatechange = function () {  
            if (xmlhttp.readyState  == 4) {
                if (xmlHttp.status == 200 || xmlHttp.status == 0) {

                alert(xmlhttp.status);

                    }
                    else{
                     alert(xmlhttp.status);
                     }
                }   
                else{
                 alert('error in response');
            }

          } 

        xmlhttp.setRequestHeader("Content-Length", sr.length);
        xmlhttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");

        xmlhttp.send(sr);  


        }
</script>
  <script type="text/javascript">   
    function test(){        
    alert('ok alert is still  working');
    }
</script>
 </head>
 <body>
        <form name="Demo" action="" method="post">
    <div>
    <input type="button" value="Click Me" onclick="test()" />    
    <input type="button" value="Soap" onclick="soap()" />   
    </div>
    </form>
   </body>
   <html>


Here are following url and action I used in android and getting requisite response 

网址“http://65.17.222.114/t2green/servicecontract/courses.svc”

Soap_action "http://tempuri.org/ICourses/GetCountries"

请求——</p>

  <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">
    <soapenv:Header/>
    <soapenv:Body>
        <tem:GetCountries/>
    </soapenv:Body>
    </soapenv:Envelope>
4

1 回答 1

1

这很可能是由于 Chrome 应用了相同的来源策略。这意味着您不能从本地 (file://) URL 向远程 Web 服务发出请求。

启动 Chrome 时使用--allow-file-access-from-files命令行标志来删除此限制,如本答案所述:https ://stackoverflow.com/a/6083677/1972476

于 2013-01-24T12:18:39.477 回答