
Communication 'twixt client & server
I have a solution that consists of a server app and a client app. I want
them to send messages back and forth using streams. I know I can use
NetworkStream to communicate over the net, but how would I do it if the
client and server are just separate processes on the same machine? Do I
still use NetworkStream with the local IP? Or is there another type of
stream specifically for interprocess communication? I don't want the client
to directly use the server's objects. It all has to be done through streams.
Thanks in advance for any help,
Luhar