Hello,
I'm busy writing a program that will communicate with an other program (.NET)
I have to send some data to that program, and they send some data back.
I was thinking that I have to write aprogram that first act as client and then as server.
So I first send some data (client socket), and then wait till the other program send some data back (server socket).
Is that correct, or can I send some data, and receive the answer in the same function with the return parameter?
My program always send some data first, and than the .NET program wil answer with some data.
Thanks