Silverlight 访问 Azure 表 REST - clientaccesspolicy.xml?
是否可以让 Silverlight 客户端应用程序直接访问 Azure 表服务 REST 端点?暂且不考虑如何在不泄露共享访问密钥的情况下对请求进行签名,Silverlight 不会访问表端点,因为 clientaccesspolicy.xml 和 crossdomain.xml 都不存在于表 URI 的根中。
除了通过我的 Web 服务器代理所有数据或以提升的权限运行 OOB 之外,还有其他方法可以解决此问题吗?
Is it possible to have a Silverlight client app directly access the Azure Table service REST endpoints? Putting aside concerns about how to sign the requests without leaking the shared access key, Silverlight won't access the Table endpoint because neither clientaccesspolicy.xml nor crossdomain.xml are present at the root of the Table URI.
Is there any way around this aside from proxying all of the data through my web server, or running OOB with elevated permissions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Steve Marx 在 2010 年 5 月的说法,这对于队列和表存储来说是不可能的:
http://social.msdn.microsoft.com/Forums/en-US/windowsazure/thread/b95bf8e8-f718-4e3d-8eae-00fbd87ce7a2#905ad47c-ed90-4418-b9e3-9a183fb18bb8
According to Steve Marx in May 2010 this is not possible for Queue and Table storage:
http://social.msdn.microsoft.com/Forums/en-US/windowsazure/thread/b95bf8e8-f718-4e3d-8eae-00fbd87ce7a2#905ad47c-ed90-4418-b9e3-9a183fb18bb8
您创建 clientaccesspolicy.xml 和 crossdomain.xml 文件并将它们放入特殊的 $root 中Azure 存储中的容器。然后您就可以成功访问存储。
You create the clientaccesspolicy.xml and crossdomain.xml files and put them in the special $root container in Azure storage. You'll then be able to access the storage successfully.