私の 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リクエストを機能させる方法を知っている人はいますか?
ありがとう!