tags:

views:

347

answers:

2

Any existing framework specially for high performance network server app in .NET world?

Thanks,

+2  A: 

There is the XF.Server, which this question says is flaky. This last question offers advice about how to write high performing networking code in .NET (use async sockets, etc.)

There's also a preview of C# Network Programming on Google Books which discusses, among other things, asynchronous socket calls.

This MSDN article is also interesting, but gets you no closer to an actual framework.

Vinko Vrsalovic
Thanks for your info, especially the link: http://stackoverflow.com/questions/319732/tips-techniques-for-high-performance-c-server-sockets
Dodd
A: 

You can take a look at SuperSocket, http://supersocket.codeplex.com/ It may not be strong like Mina and Netty, but it is kind of simple framework you can use easily.

Kerry Jiang