我的 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 请求在浏览器上下文中工作?
谢谢!