Friday, 13 September 2013

TCPServer with simultaneous full duplex communication

TCPServer with simultaneous full duplex communication

I am trying to write a c# server/client that will simultaneously send byte
arrays over TCP across each other. I'm trying to wrap my head around how
to accomplish this. All of the example I have seen wait for a message,
then send a response. I need communication to happen simultaneously.
Would I need to create 2 separate TCP socket connections for ingoing &
outgoing on both the server & client? Can I pass data simultaneously with
1 connection in a "full duplex" fashion? Any help is appreciated.

No comments:

Post a Comment