如何让 Silverlight 4 客户端连接到 Windows 服务
我有现有的窗口服务。它不使用 WCF,我也不希望它使用。 Windows 服务侦听端口,一旦套接字连接,它就会开始每秒发布应用程序状态信息。
我想构建一个 SilverLight 应用程序,它可以使用所有已发布的信息并更新显示。我遇到过很多描述 Web 服务或 WCF 服务的文章。我有作为窗口服务运行的库存标准可执行文件。我正在尝试在这里做不可能的事情吗?
I have an existing window service. It does not use WCF and nor do I want it to. The windows service listens on a port and once a socket connects it starts publishing application status information every second.
I want to build a SilverLight application that can consume all the published information and update a display. I have come across plenty of articles that describe this for a web service or for a WCF service. I have stock standard executable running as a window service. Am I trying to do the impossible here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 对直接使用套接字提供了一些支持。请参阅 MSDN 上的使用套接字。特别注意安全限制策略部分。如果 Silverlight 在沙箱(不是 OOB)中运行,您将无法连接到网络上的任何随机主机。
Silverlight has some support for using sockets directly. See Working With Sockets on MSDN. Pay special attention to the part about security restrictions policy. If Silverlight runs in the sandbox (not OOB) you cannot connect to any random host on the network.