Networking Forums

Networking Forums > Computer Networking > Linux Networking > How to inspect named pipes in Unix and Windows?

Reply
Thread Tools Display Modes

How to inspect named pipes in Unix and Windows?

 
 
Ramon F Herrera
Guest
Posts: n/a

 
      11-24-2007, 02:52 PM
The OpenOffice process can be started in two ways:

(1) Listening to a TCP socket
(2) Listening to a named pipe

The first method is very easy to inspect. In order to make sure that
things are correct, just use 'netstat -a' in both Unix and Windows.

My question pertains to the second method. The OpenOffice API has a
'Bootstrap' method which *presumably* starts the OO process in named
pipe mode (my guesstimate). How can I verify that such thing has
indeed occurred? I am told that Windows creates some '\\.\pipe' file.
Is is visible through the filesystem or only programmatically? How can
I see all the active (?) named pipes on a Unix and on a Windows
system?

TIA,

-Ramon

 
Reply With Quote
 
 
 
 
goarilla
Guest
Posts: n/a

 
      11-24-2007, 03:32 PM
Ramon F Herrera wrote:
> The OpenOffice process can be started in two ways:
>
> (1) Listening to a TCP socket
> (2) Listening to a named pipe
>
> The first method is very easy to inspect. In order to make sure that
> things are correct, just use 'netstat -a' in both Unix and Windows.
>
> My question pertains to the second method. The OpenOffice API has a
> 'Bootstrap' method which *presumably* starts the OO process in named
> pipe mode (my guesstimate). How can I verify that such thing has
> indeed occurred? I am told that Windows creates some '\\.\pipe' file.
> Is is visible through the filesystem or only programmatically? How can
> I see all the active (?) named pipes on a Unix and on a Windows
> system?
>
> TIA,
>
> -Ramon
>


in Unix you can filter output from lsof
eg (in linux - read manual of lsof it can differ on different *Nix)

lsof -n -P | grep 'FIFO'
 
Reply With Quote
 
Ramon F Herrera
Guest
Posts: n/a

 
      11-25-2007, 06:36 AM
On Nov 24, 11:52 am, Ramon F Herrera <ra...@conexus.net> wrote:
> The OpenOffice process can be started in two ways:
>
> (1) Listening to a TCP socket
> (2) Listening to a named pipe
>
> The first method is very easy to inspect. In order to make sure that
> things are correct, just use 'netstat -a' in both Unix and Windows.
>
> My question pertains to the second method. The OpenOffice API has a
> 'Bootstrap' method which *presumably* starts the OO process in named
> pipe mode (my guesstimate). How can I verify that such thing has
> indeed occurred? I am told that Windows creates some '\\.\pipe' file.
> Is is visible through the filesystem or only programmatically? How can
> I see all the active (?) named pipes on a Unix and on a Windows
> system?
>
> TIA,
>
> -Ramon



System Information for Windows

http://www.gtopala.com/

-RFH

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
IPSec between windows and Unix OJG Windows Networking 0 06-18-2007 07:43 PM
Unix + Windows Server enquirer Linux Networking 4 02-18-2005 12:50 PM
Windows & UNIX.. Pratip Windows Networking 2 10-04-2004 11:25 AM
unix - windows network help please ritchie Linux Networking 2 12-27-2003 06:25 PM
RPC to communicate between Windows and Unix mshetty Linux Networking 1 11-22-2003 07:57 PM



1 2 3 4 5 6 7 8 9 10 11