需要帮助代码通过 Intranet 在 C# 中的单独 winform 应用程序之间进行通信:)
任何人都可以帮助我提供一个编码示例或任何代码来在两个单独的应用程序之间进行通信以实现多种目的,例如 i) 从作为客户端运行的客户端应用程序查找 Intranet 上的服务器应用程序 ii) 从其他端应用程序检查客户端或服务器是否处于活动状态 iii) 从另一端到客户端或服务器的通信数据或对象
我正在使用 C# winforms,并且是网络应用程序的新手,所以我需要帮助。我更喜欢在这里问这个问题,因为我发现比搜索更有用的帮助或指南链接互联网。
Can anyone help me with a coded example or any code to communicate between two separate application for multiple purposes like
i) Find server application on the intranet from a client application running as client
ii) Checking client or server is active from other side application
iii) Communication data or objects to the client or server from other side
I am using C# winforms and new to network applications so i need help.I preferred to ask this question here because i find more helpful links to help or guides than searching them over internet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我同意这个话题对于一个问题来说太大了。 然而,为了给您指明正确的方向,请在 MSDN 网站上研究 WCF。
I agree that this is too big a subject for one question. However, to point you in the right direction, research WCF at the MSDN web site.
您还可以搜索“.Net Remoting”,这是 .Net 进程通过网络(或同一台计算机)通过名称相互通信的另一种方式。
You could also do a search for ".Net Remoting" which is another way for .Net processes to communicate with each other by name over a network (or same machine).
或者你可以走 Socket 路线并执行诸如多播之类的操作
Or you could go the Socket route and do something like multicast