无需 WCF 的 Silverlight 跨域调用
我有一个 Silverlight 应用程序。我正在尝试调用 RESTful Web 服务。
互联网似乎说我需要制作WCF代理,并将Silverlight客户端访问策略文件放在该WCF代理的根目录中。
我的问题是—— 我可以将客户端访问策略文件放在 RESTful(非 WCF)Web 服务的根目录中,而忘记 WCF 中间人吗?
I have a Silverlight application. I'm trying to make calls to RESTful web service.
The internet seems to say I need to make WCF proxy, and put the Silverlight client access policy file in the root of that WCF proxy.
My question is --
Can I just put a client access policy file on the root of the RESTful (non-WCF) webservice, and forget about the WCF middle man?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
绝对地。您只需通过标准 WebClient 进行调用,而不是通过 WCF 代理进行调用。
Absolutely. Rather than making your calls through a WCF proxy, you'll just make your calls through the standard WebClient.