我正在开发我的第一个仪表板小部件,并试图致电WebS服务。但是我继续获得xmlhttprequest状态0。

以下是代码

    var soapHeader = '<?xml version=\"1.0\" encoding=\"utf-8\"?>\n'
                             +'<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n'

                             +'<soap:Body>\n'
                             +'<UsersOnline xmlns=\"http://wsSync\" />\n'
                             +'</soap:Body>\n'
                             +'</soap:Envelope>';


var destinationURI = 'http://ws.storan.com/webservicesformraiphone/wssync.asmx';

var actionURI = 'http://wsSync/UsersOnline';
function callWebService() {
  try{
       SOAPObject = new XMLHttpRequest();
       SOAPObject.onreadystatechange = function() {fetchEnd(SOAPObject);}
       SOAPObject.open('POST', destinationURI, true);


       SOAPObject.setRequestHeader('SOAPAction', actionURI);
       SOAPObject.setRequestHeader('Content-Length', soapHeader.length);
       SOAPObject.setRequestHeader('Content-Type', 'text/xml; charset=utf-8');
       var requestBody = soapHeader;
       SOAPObject.send(requestBody);


  } catch (E)
  {
     alert('callWebService exception: ' + E);
  }
}

function fetchEnd(obj)
{

   if(obj.readyState == 4){ 

        if(obj.status==200)
        {
            alert("Yahooooooo");
        }
   }
}

有任何想法吗?

有帮助吗?

解决方案

你添加了吗?

<key>AllowNetworkAccess</key>
<true/>

对PLIST?如果没有,外界将不可用。

如果试图越过域,您也可能会遇到问题。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top