.NET Remoting - 如何对所有连接的客户端进行回调?
我正在研究 .NET Remoting,我在 .NET 2.0 中的远程回调和事件,一个简单示例。一切都很好。 现在我的问题是,如果我尝试启动另一个客户端,服务器不会回调所有连接到它的客户端,而只会回调最后一个客户端。 如何向所有客户发送回调?
I'm studying .NET Remoting and I see an example on Remoting callbacks and events in .NET 2.0, A simple example. All works good.
Now my problem is if I try to start another client, the server doesn't callback to all clients connected to it but only to the last one.
How can I send callback to all clients?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET Remoting 现已被 Windows Communication Foundation (WCF) 取代,后者是 . NET框架3.0。您应该使用 WCF 而不是远程处理。
阅读此教程,了解如何在 WCF 中使用回调:
.NET Remoting is now superseded by Windows Communication Foundation (WCF), which is part of the .NET Framework 3.0. You should use WCF instead of Remoting.
Read this tutorial, on how to work with callbacks in WCF: