Real Life (NO Echo Server) SocketAsyncEventArgs tutorial required

Does anyone know any sample / tutorial (server example with SocketAsyncEventArgs code, etc.) about the extended asynchronous socket template introduced in .net 3.5? ( http://msdn.microsoft.com/en-us/library/bb968780.aspx )

Pls. do not send me any samples with these well konown echo servers, they are not useful in this topic, they hide some important things that should be understood in this section. A sample server should receive data and send back something completely new / different from the client.

Thanks in advance!

+8
c # tcp
source share
1 answer

I believe that this tutorial from codeproject should give you what you are looking for.

The tutorial looks pretty detailed and consists of a server / client component. I think that this part should satisfy the restrictions not to use the echo server, since you have access to the server, as well as its code for additional information.

Hope this helps

+3
source share

All Articles