.NET 中客户端/服务器网络通信应用程序的最新技术是什么?
我最近负责创建一个客户端/服务器应用程序,其中服务器等待连接,然后客户端连接到它,使这些应用程序能够进行通信(相互发送对象实例、字符串消息等) 我想知道 .NET 领域适合此类应用程序的最新网络技术是什么?
自 2.0 版本以来,我还没有真正使用过 .NET,并且不确定引入了哪些新内容可以更轻松地创建此类客户端/服务器对。
多谢。
I was recently charged with creating a Client/Server application where the Server waits for connections and the Client then connects to it, enabling these applications to communicate (send object instances, string messages, etc. to each other)
I was wondering what is the newest network technology suitable for such an application in the realm of .NET?
I haven't really worked with .NET since version 2.0 and am not sure what newer stuff have been introduced that would make it easier to create such Client/Server pairs.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以了解一下 WCF 或 ASP.NET 等技术。
使用 ASP.NET,您可以根据 HTTP 规范和 REST API 创建此类应用程序。
You can take a look at technologies like WCF or ASP.NET.
using ASP.NET you can create such an application on the HTTP specification and REST APIs.