从服务器到所有客户端的 Silverlight 通知,无需 UDP

发布于 2024-11-11 17:46:36 字数 634 浏览 4 评论 0原文

我想知道如何在没有 UDP 的情况下实现此目的,我有一个使用 UDP 多播的解决方案: http://blogs.msdn.com/b/ncl/archive/2009/11/18/udp-multicast-in-silverlight-4.aspx 但由于这是针对拥有仅​​启用端口 TCP 80 和 TCP 8080 的 Intranet 的知名客户,因此该解决方案是不可能的。是的,应用程序运行在内网环境中。

我需要一个简单的示例,如何通过 WCF 向所有 Silverlight 客户端发送消息。

我找到了这个解决方案,但我不知道如何将其实现到 Silverlight 中:

http://idunno.org/archive/2008/05/29/wcf-callbacks-a-beginners-guide.aspx

我没有主意了,请帮忙。

I wonder how can I achieve this without UDP, I have a solution using UDP multicast: http://blogs.msdn.com/b/ncl/archive/2009/11/18/udp-multicast-in-silverlight-4.aspx
but since this is for a high profile customer who has an intranet with port TCP 80 and TCP 8080 only enabled this solution is not possible. Yes, the application runs in an intranet environment.

I need a simple example how to send messages to all Silverlight clients over WCF.

I found this solution, but I have no idea how to implement that into Silverlight:

http://idunno.org/archive/2008/05/29/wcf-callbacks-a-beginners-guide.aspx

I'm out of ideas guys, please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

二手情话 2024-11-18 17:46:36

Silverlight 客户端不应使用异步接收通知,而应使用轮询。
它可以轮询 WCF 服务,该服务将从数据库中获取数据...

这是典型的解决方案。无论如何,您必须处理 Silverlight 客户端不在线,然后它又在线并需要知道其状态的情况...

但是,如果您仍然希望 Silverlight 接收异步通知,请尝试搜索“全双工”。
以下是一些出发点:
http://blog .developers.ba/post/2009/02/25/Silverlight-chat-application-using-WCF-full-duplex.aspx

http://weblogs.asp.net/dwahlin/archive/2008/06/16/pushing-data-to-a-silverlight-client-with-wcf-duplex-service-part-i。 aspx

http://hindams.wordpress.com/2010/04/05/wcf-full-duplex-with-a-silverlight-application/

Instead of receiving notifications async the Silverlight client should use polling instead.
It can poll a WCF service that will fetch the data from a db...

This is the typical solution. Anyway, you have to handle the case in which the Silverlight client wasn't online and then it becomes online and need to know its state...

However, if you still want Silverlight to receive async notifications try searching for 'Full Duplex'.
Here are some starting points:
http://blog.developers.ba/post/2009/02/25/Silverlight-chat-application-using-WCF-full-duplex.aspx

http://weblogs.asp.net/dwahlin/archive/2008/06/16/pushing-data-to-a-silverlight-client-with-wcf-duplex-service-part-i.aspx

http://hindams.wordpress.com/2010/04/05/wcf-full-duplex-with-a-silverlight-application/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文