faultString = "Security error accessing url" 问题的解决办法

搜了一下,得到了结论,:

一、验证通过

建一个xml叫crossdomain.xml,内容如下

<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*" to-ports="*" secure="false" />
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>

然后将该xml放到你要访问的地址的服务器,举个例子,你要请求的url为192.168.1.110,那就放在192.168.1.110的wwwroot目录下
默认路径 系统盘:\Inetpub\wwwroot

二、未测试

如果不放在根目录下需要手动指定位置,在flex代码中:
Security.allowDomain("*");
Security.loadPolicyFile("http://192.168.1.110/路径...../crossdomain.xml");
应该就可以了

你可能感兴趣的:(Security)