Asp.net Scribable Web服务无法跨域工作

Asp.net Scribable Web服务无法跨域工作,asp.net,web-services,Asp.net,Web Services,我正在使用这个clientaccesspolicy.xml文件 <?xml version="1.0" encoding="utf-8"?> <access-policy> <cross-domain-access> <policy> <allow-from http-request-headers="SOAPAction"> <domain uri="*"/> </

我正在使用这个clientaccesspolicy.xml文件

<?xml version="1.0" encoding="utf-8"?>
<access-policy>
  <cross-domain-access>
    <policy>
      <allow-from http-request-headers="SOAPAction">
        <domain uri="*"/>
      </allow-from>
      <grant-to>
        <resource path="/" include-subpaths="true"/>
      </grant-to>
    </policy>
  </cross-domain-access>
</access-policy>
并尝试在我的子域中使用javascript访问Web服务,但在FF中不起作用,在IE中工作良好。 我还尝试过使用crossdomain.xml文件,它在IE中也可以正常工作,但在FF中不行。

2个月

1 jquery ajax jsoncallback 2在您的子域中创建一个Web服务访问其他域中的另一个Web服务,然后使用javascript访问您的新Web服务