vote up 1 vote down star

Can pipes be used across LAN computers?

In particular I'm looking for Windows, but if you have more info on other platforms, that will also help others who find this thread later.

flag

2 Answers

vote up 7 vote down check

Yes they can.

Named pipes can be used to provide communication between processes on the same computer or between processes on different computers across a network. If the server service is running, all named pipes are accessible remotely

http://msdn.microsoft.com/en-us/library/aa365590.aspx

link|flag
1  
Obviously, not true for non-microsoft OSes. – ceretullis Oct 10 '08 at 18:26
vote up 2 vote down

It should also be noted that a TCP/IP connection is effectively a pipe in the sense that you shove bytes in one end and they come out the other. TCP/IP connections are available on pretty much any platform you are likely to care about.

link|flag
Why should this be noted? – Greg Dean Oct 15 '08 at 23:11
1  
It should be noted because it's usually the correct way to do this in a non-Windows-specific way. – Steven Schlansker Oct 13 at 21:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.