r/IPC$/PIPE/foo", SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_CALL );
Open the Named Pipe foo for reading and writing. The pipe will behave like the CallNamedPipe interface. | new SmbNamedPipe( "smb://server/IPC$/foo", SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_TRANSACT ); | Open the Named Pipe foo for reading and writing. The pipe will behave like the TransactNamedPipe interface. |
new SmbNamedPipe( "smb://server/IPC$/foo", SmbNamedPipe.PIPE_TYPE_RDWR ); | Open the Named Pipe foo for reading and writing. The pipe will behave as though the CreateFile , ReadFile , WriteFile , and CloseFile interface was being used. |
See Using jCIFS to Connect to Win32 Named Pipes for a detailed description of how to use jCIFS with Win32 Named Pipe server processes.