Silverlight WebClient.DownloadStringAsync()仅适用于浏览器

时间:2012-07-24 12:45:25

标签: silverlight get webclient silverlight-5.0

我的Silverlight 5应用使用WebClient上传和下载json内容。 POST请求工作正常,但GET请求仅在浏览器外的上下文中有效。

这是我的服务器的clientaccesspolicy.xml

<access-policy>
    <cross-domain-access>
        <policy>
            <allow-from http-request-headers="*" http-methods="*">
                <domain uri="*"/>
            </allow-from>
            <grant-to>
                <resource include-subpaths="true" path="/"/>
            </grant-to>
        </policy>
    </cross-domain-access>
</access-policy>

有谁知道如何让GET请求在浏览器上下文中运行?

谢谢!

0 个答案:

没有答案