开发者

Are there any examples for programming client/server "Hello world" in C#?

开发者 https://www.devze.com 2023-01-14 01:42 出处:网络
I want some fairly simple functionality. Server listening for a client Clients connecting and sending "Hello server"

I want some fairly simple functionality.

  • Server listening for a client
  • Clients connecting and sending "Hello server"
  • Server ackn开发者_如何学编程owledging with "Hello client"

Communication performed using TCP/IP. I've looked for examples with source code but haven't found anything that I can get working.

Does anyone have any recommended resources?


Yes. MSDN has one here: http://msdn.microsoft.com/en-us/library/ms734712.aspx

And there's a simpler one here: http://blogs.msdn.com/b/jmeier/archive/2007/10/15/how-to-create-a-hello-world-wcf-service-using-visual-studio.aspx

These use WCF (Windows Communication Foundation), which is probably the simplest way to accomplish what you're describing in your question.

There are other options of course, but WCF is the simplest that I'm aware of.

0

精彩评论

暂无评论...
验证码 换一张
取 消