我的项目需要一个解决方案来替换当前的 .NET Remoting 解决方案
我有一个有要求的项目:
- 客户端通过互联网(WAN)连接到服务器以获取数据。
- 当服务器有新数据时,服务器可以通知客户端。
P/S:客户端是一个.NET WinForm 应用程序。有人建议我使用 .NET Remoting,但它仅在 LAN 上运行良好,并且在通过互联网向客户端发送事件时存在问题。
请帮我更换解决方案。谢谢。
更新: 我想知道当服务器想通过互联网向客户端发送事件时,WCF 可以解决这个问题。如果是的话,请把解决这个问题的文章发给我。服务器只能发送部分客户端,而不是所有客户端?谢谢。
I have a project with requirements:
- Clients connect to server through internet (WAN) to get data.
- Server can notify to clients when server has new data.
P/S: Client is a .NET WinForm application. Someone suggest me to use .NET Remoting but it only works well on LAN and it has problem when send event to clients through internet.
Please help me a replace solution. Thanks.
UPDATE:
I wonder that WCF can solve the problem when server want to send event to client through internet. If yes, please send me the article which solves this problem. And the server can send only some clients, not all clients? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WCF(Windows Communication Foundation)允许您编写可以通过 Internet 或网络通过 HTTP 或 TCP/IP 连接的服务。
Remoting 是 WCF 的前身。
http://msdn.microsoft.com/en-us/library/ms735119。 ASPX
WCF (Windows Communication Foundation) allows you to wirte a service which can be connected via HTTP or TCP/IP over the internet or network.
Remoting was a predecessor to WCF.
http://msdn.microsoft.com/en-us/library/ms735119.aspx
WCF 是 .NET Remoting 的替代品。
请参阅 Windows 通信框架初学者指南开始吧。
WCF is the replacement for .NET Remoting.
See Beginner's Guide to Windows Communication Framework to get started.