helo sir,
ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ ÃÂ iam working on tcp/ip programing using c#.net,i have problem (ie) My application needs to send multiple messages to server and receive a response from each message before sending the next message. However, I can only receive a response to the first message, here server means(tcp/ip reader)
in my c#.net code
iam doing like this
socket newsocket=newÃÂ socket();
newsocket.connect();
newsocket.send();
newsocket.receive();
then i have to send one more send command to server
newsocket.send();
newsocket.receive();
then i have to close the socket();
so
My application needs to send multiple messages to server and receive a response from each message before sending the next message
could u please help me how to do
View Complete Post