I'm developing a service which communicates with a client.
Both are on the same machine.
To achieve this, I'm using named pipes. Server and client can start the communication, so I am creating 2 named pipes.
So both server and client act as server and client as they need to.
But this is only to connect one module to the service. I have 5 modules for now.
My question then is:
Is there any limit creating named pipes? each named pipe has just one client connected to each server, so I'm not trying to connect 50 clients to the same server.
But is there any limitation on Windows on how many named pipes can I have?
I did some research, but couldn't find any good answers. And did not find anything in msdn.