Chrome和Firefox中的状态为零

时间:2012-11-24 05:45:04

标签: javascript rest xmlhttprequest

我必须使用Javascript调用Rest服务。我的代码是:

function CreateXMLHttpRequest() {
  if (typeof XMLHttpRequest != "undefined") {
    return new XMLHttpRequest();
  } else if (typeof ActiveXObject != "undefined") {
    return new ActiveXObject("Microsoft.XMLHTTP");
  } else {
    throw new Error("XMLHttpRequestnot supported");
  }
}
function CallWebService() {
  objXMLHttpRequest = CreateXMLHttpRequest();
  objXMLHttpRequest.open("POST", "http://www.rest.net/services/abc.svc/json/GetXml", true);
  objXMLHttpRequest.setRequestHeader("Content-Type", "application/xml;charset=UTF-8");
  var packet = '<?xml version="1.0" encoding="utf-8" ?><CompanyRequest xmlns="http://schemas.datacontract.org/2004/07/abc.DomainModel" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><CompanyName>company</CompanyName></CompanyRequest>';
  objXMLHttpRequest.onreadystatechange = function () {
    if (objXMLHttpRequest.readyState == 4&&objXMLHttpRequest.status==200) {
      alert(objXMLHttpRequest.responseText);
    }
  }
  objXMLHttpRequest.send(packet);
}

IE中的状态为200,我可以得到回复。但在Firefox和Chrome中,状态为0.我如何克服这个问题?

提前致谢。

1 个答案:

答案 0 :(得分:0)

您正在http://www.rest.net申请一份文件,我认为您位于其他域名。在这种情况下,您是same origin policy的受害者,并且您的来电被阻止。

如果您将http://www.rest.net设置为受信任域,则可能在IE中有效。