clientaccesspolicy.xml突然停止工作

时间:2013-07-30 20:36:05

标签: asp.net web-services silverlight iis-7 clientaccesspolicy.xml

下午好。我有点腌渍。我试图帮助一个同事,现在她的网络应用程序(在本地托管,所以我无法向你显示结果)不起作用。我试图编辑她的clientaccesspolicy.xml文件,一切顺利。然后突然,每个请求 - 即使我设置domain uri="*" - 正在获取有关跨域请求的System.ServiceModel.CommunicationException。这是clientaccesspolicy.xml:

<?xml version="1.0" encoding="utf-8"?>
    <access-policy>
        <cross-domain-access>
            <policy>
                <allow-from http-request-headers="*">
                    <domain uri="*"/>
                </allow-from>
                <grant-to>
                    <resource path="/" include-subpaths="true"/>
                </grant-to>
            </policy>
        </cross-domain-access>
    </access-policy>

显然,该政策可通过网络访问:http://gis.co.frederick.va.us/clientaccesspolicy.xml

发生什么事了?我哪里做错了?我甚至试过重启IIS - 没有爱。任何帮助表示赞赏。

谢谢!

0 个答案:

没有答案