What is the correct way to setup a named pipe in C# across a network?
Currently I have two machines, \'client\' and \'server\'.
Server sets up its pipe in th
You need to set permissions on the NamedPipeServerStream so that the client will have permissions to access the pipe.
I would look at the SetAccessControl method of your NamedPipeServerStream.