I know that Java can act as a client for reading / writing named pipes, but I need another program that acts like a server.
In this case, the program with which I communicate should act as a client, not a server. Is it possible for Java to act in server mode for named pipes?
EDIT: There are client and server modes in named pipes (Windows). First, the server must be installed before the client can connect to it. I have an outdated application that acts like a "client", which means that it connects to what it assumes, it is an already named pipe. I have a new Java application that I would like to associate with this deprecated application using named pipes. I just found examples of how to use Java named pipes in connection with previously installed named pipes.
source share