从 silverlight 获取网页内容?
我想使用Silverlight来解析 http://www.downforeveryoneorjustme.com/http:// /bing.com/ 并查看“bing.com”是否已启动。这在 Silverlight 站点中是否可能(在浏览器中运行,无需提升信任度)?
I want to use Silverlight to parse http://www.downforeveryoneorjustme.com/http://bing.com/ and see if "bing.com" is up. Is this possible in a Silverlight site (running in-browser with no elevated trust)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您能让他们参与,这是可能的 - 他们需要一个 clientaccesspolicy.xml 或 crossdomain.xml 来允许您的托管域(或所有域)访问。如果没有这一点,您几乎可以在没有提升信任的情况下从 Silverlight 直接访问。
也就是说,您可以轻松地让托管 Silverlight xap 的服务器通过服务调用建立出站连接,然后将结果代理回 Silverlight 客户端。
It's possible if you can get their participation- they'd need a clientaccesspolicy.xml or crossdomain.xml that allows your hosting domain (or all domains) access. Without that, you're pretty much hosed for direct access from Silverlight without elevated trust.
That said, you could easily have the server that's hosting your Silverlight xap make the outbound connection via a service call, then proxy the result back to a Silverlight client.