2
votes
5answers
62 views
Windows Named Pipe Problem
I'm writing a driver that communicates with a userland application through a named pipe.
The userland application creates the named pipe by calling CreateNamedPipe() and then passe …
0
votes
2answers
75 views
Why are named pipes local?
I remember using Named Pipes for communicating between 2 machines (back in Windows NT).
How come now I read that Named Pipes are only for Inter Process Communication in the SAME ma …
0
votes
2answers
65 views
Problem with Named Pipes between C# and Python
I'm trying to create a two-way communication channel between two programs (one in Python and another in C#)
When I create a named pipe between two C# programs or two Python progra …
0
votes
1answer
40 views
mono, unix sockets
Hi!
Does anyone know an example of c# (mono) application that creates unix domain socket and listens to it async way?
0
votes
1answer
37 views
Sockets vs named pipes for local IPC on Windows?
Are there any reasons for favoring named pipes over sockets for local IPC (both using win-api), effectiveness-wize, resource-wize or otherwise, since both behave very much alike (a …
1
vote
1answer
37 views
2 Questions about named pipes
Hi i have a couple of question about using named pipes.
Firstly, when trying to setup a pipe server, i have noticed that if i use the code below.. at the end of the first client c …
0
votes
2answers
47 views
Named pipe C# using .NET 3.5 features like NamedPipeClientStream
Are named pipes in Windows (and other OS as well process wide)?
I have this weird scenario:
I wrote a program lets say "Controller.exe" which spawns a bunch of "Workers.exe", the …
0
votes
2answers
24 views
Named pipes between VC++ 6.0 and C# visual studio 2008.
hi,
I am doing a project in which i am using VC++ and C# both. VC++ is for hardware interface (no other go, i must use VC++ only) and the application side i am using C# (micro sof …
0
votes
3answers
56 views
Must i abort this thread? Waiting for namedpipes. How do i do this properly?
I have another question about this same code and keeping the pipe open after the client closes it
But here i have a problem gracefully terminating my app. My main code is below. T …
0
votes
0answers
4 views
Alternative to pipeStream.WaitForConnection, a way to pass messages?
My app is being launched via cmd line and if another instance exist i send it the cmd line data via pipes. I am using NamedPipeServerStream ATM. The problem is when i listen for in …
1
vote
2answers
186 views
Number of Clients that can connect to a Named Pipe
Say a server created a named pipe "myTestPipe". How many clients can connect to "myTestPipe"? From what I have read on the Web, it seems only one client can, but wanted to make sur …
0
votes
1answer
25 views
Remote Named Pipes connection refused on XP
I've got a simple design I'm trying to implement.
A single C++ based server app creates a write-only named pipe. Multiple clients (C++ or C#) connect as read-only and listen for s …
0
votes
1answer
31 views
Best way to keep a pipe open after a remote close
Using this tutorial i came up with the code below. My client is ran frequently. Its activated via clicks and possibly can be launched twice at the same moment in certain circumstan …
1
vote
2answers
51 views
Named Pipes IPC
I am trying to create a pipe to use between two processes to send information. The two process are not related and implementation with signals has a problem where if the process th …
0
votes
2answers
80 views
Is there a cross platform way of handling named pipes in Java or should I write my own?
I'm writing a bit of JNI code where a DLL running in the process space of various processes on the system needs to talk back to a java process. I've decided to use named pipes to …
