how to use Named pipe in Client server application
-
Hi, i am new to use the PIPE and client server application. I have been able to communicate the IPC for processes that are on the same computer using named pipe. But i am clueless, how to obtain it for the communication between two different computer OR client - server application. If any example or link is available, please provide. Thanks ND
-
Hi, i am new to use the PIPE and client server application. I have been able to communicate the IPC for processes that are on the same computer using named pipe. But i am clueless, how to obtain it for the communication between two different computer OR client - server application. If any example or link is available, please provide. Thanks ND
Is this link helpful. http://www.codeguru.com/cpp/i-n/network/namedpipes/article.php/c2475
-
Hi, i am new to use the PIPE and client server application. I have been able to communicate the IPC for processes that are on the same computer using named pipe. But i am clueless, how to obtain it for the communication between two different computer OR client - server application. If any example or link is available, please provide. Thanks ND
The only difference is the pipe name. The client needs to connect to a pipe name with the server name included: \\servername\pipe\pipename
Mark Salsbery Microsoft MVP - Visual C++ :java:
-
The only difference is the pipe name. The client needs to connect to a pipe name with the server name included: \\servername\pipe\pipename
Mark Salsbery Microsoft MVP - Visual C++ :java:
Thanks , It works But now i am finding the new issue. I am able to connect only one client to the server.because pipe is opened by one client so another client is not able to connect it I am connect the multiple client withe same server. how to achive it? Thanks again Navdeep
-
Thanks , It works But now i am finding the new issue. I am able to connect only one client to the server.because pipe is opened by one client so another client is not able to connect it I am connect the multiple client withe same server. how to achive it? Thanks again Navdeep
See Named Pipe Instances[^] Mark
Mark Salsbery Microsoft MVP - Visual C++ :java: