Originally Posted by
ejp
So let's get this straight: you have a C++ named-pipe client application that wants to talk to a named pipe that has to be created by a Java server application.
If that's the requirement, it's impossible as stated (unless you are prepared to contemplate a lot of JNI).
If on the other hand the C++ is the server, just open the pipe as usual in Java, with about four backslashes: \\\\server\\pipe\\name ... and use FileInputStream/FileOutputStream to talk to it.
Oooh look JNI agin, hope the other forum you posted on has answered your question.
Regrads,
Chris