Tagged Questions
An extension to the traditional pipe concept on Unix and Unix-like systems
18
votes
6answers
15k views
IPC performance: Named Pipe vs Socket
Everywhere seems to say named pipes are fast whereas sockets are slow for ipc. How much greater is the speed advantage of named pipes vs local sockets on linux? I would prefer to use sockets because ...
15
votes
5answers
4k views
What is a good way to shutdown Threads blocked on NamedPipeServer#WaitForConnection?
I start my application which spawns a number of Threads, each of which creates a NamedPipeServer (.net 3.5 added managed types for Named Pipe IPC) and waits for clients to connect (Blocks). The code ...
14
votes
3answers
354 views
WCF vs. .Net Remoting
according to this article, WCF with named pipes is the best choice for IPC, and it is around 25 % faster than .Net Remoting.
I have the following code that compares WCF with named pipes with .Net ...
11
votes
13answers
1k views
How to create a virtual file?
I'd like to simulate a file without writing it on disk. I have a file at the end of my executable and I would like to give its path to a dll. Of course since it doesn't have a real path, I have to ...
10
votes
1answer
912 views
Python: why does a read-only open of a named pipe block?
This is purely an academic question rather than one which is blocking any coding effort on my part.
I've noticed a couple of oddities when dealing with named pipes (FIFOs) under various flavors of ...
9
votes
3answers
6k views
How to open a Windows named pipe from Java?
On our Linux system we use named pipes for interprocess communication (a producer and a consumer).
In order to test the consumer (Java) code, I would like to implement (in Java) a dummy producer ...
8
votes
3answers
628 views
Named Pipes from Windows Service to Client Application
My story is that I am designing a new app which must communicate with a Windows service. After much research I have come to the conclusion that Named Pipes are the recommended method ( How do I send ...
7
votes
1answer
565 views
Non-blocking named pipes
Issue summary: I've managed to speed up the thumbing of images upon upload dramatically from what it was, at the cost of using concurrency. Now I need to secure that concurrency against a race ...
7
votes
3answers
351 views
When messages get bigger, IpcChannel Remoting gets slower
I'm evaluating various interprocess communication methods for a couple of .NET 2.0 processes residing on the same machine. Naturally, .Net Remoting is a candidate, and theoretically the fastest ...
7
votes
2answers
2k views
c# Named Pipe Asynchronous Peeking
Hey all,
I need to find a way to be notified when a System.IO.Pipe.NamedPipeServerStream opened in asynchronous mode has more data available for reading on it- a WaitHandle would be ideal. I cannot ...
7
votes
3answers
506 views
How can I control an interactive Unix application programmatically through Perl?
I have inherited a 20-year-old interactive command-line unix application that is no longer supported by its vendor. We need to automate some tasks in this application.
The most troublesome of these ...
7
votes
7answers
2k views
How to send object through NamedPipe in .NET 3.5?
Can you tell me what's the best way to send objects through NamedPipes in .net 3.5?
Thanks in advance
7
votes
1answer
8k views
How do I perform a non-blocking fopen on a named pipe (mkfifo)?
If I have a program which creates and attempts to open a named pipe using mkfifo, how can I open a pipe for reading or writing without blocking?
Specifically, I'm writing a C program which can be run ...
6
votes
1answer
144 views
chaining Popen subprocesses properly
i have a construct like the following:
os.mkfifo('pipe.tmp')
enc = Popen(['encoder', '-i', 'pipe.tmp'])
cap = Popen(['capture', '-f', 'pipe.tmp'])
here cap is a process which normally writes to a ...
6
votes
2answers
193 views
Prevent FIFO from closing / reuse closed FIFO
Consider the following scenario:
a FIFO named test is created. In one terminal window (A) I run cat <test and in another (B) cat >test. It is now possible to write in window B and get the ...
6
votes
5answers
1k views
Using named pipes with bash - Problem with data loss
Did some search online, found simple 'tutorials' to use named pipes. However when I do anything with background jobs I seem to lose a lot of data.
[[Edit: found a much simpler solution, see reply to ...
6
votes
3answers
1k views
Non-Blocking File IO in Java
I want to write to a named pipe (already created) without blocking on the reader. My reader is another application that may go down. If the reader does go down, I want the writer application to neep ...
6
votes
2answers
3k views
C++: Implementing Named Pipes using the Win32 API
I'm trying to implement named pipes in C++, but either my reader isn't reading anything, or my writer isn't writing anything (or both). Here's my reader:
int main()
{
HANDLE pipe = ...
6
votes
1answer
1k views
Why are pipes considered dangerous to use in Windows/unix/linux?
Why are pipes considered dangerous to use? What can be done to avoid these security issues?
I'm mostly interested in Windows, but if you have other OS information, please provide.
6
votes
2answers
16k views
Expose a WCF Service through a Named Pipes binding
Intro:
I successfully implemented a WCF Service hosted in a Windows Service a few days ago. The community here at StackOverflow helped me with the WSDL exposure here. I thank you once again. However ...
5
votes
1answer
664 views
Stream video from ffmpeg and capture with OpenCV
I have a video stream coming in on rtp to ffmpeg and I want to pipe this to my OpenCV tools for live streaming processing. The rtp linkage is working because I am able to send the incoming data to a ...
5
votes
3answers
131 views
Best and safe way to transfer data over a pipe on different platform
Currently I am facing an issue where i am passing a buffer object over a pipe from x64 arch to x86 arch. The object also contains some pointer values, which is 8 bytes in x64 which the same pointer ...
5
votes
2answers
228 views
Named Pipe closing prematurely in script?
ls:
prwx------ 1 root root 0 fifo
write.sh:
#! /bin/bash
while true;
do
echo "blah" > fifo
done
read.sh:
#! /bin/bash
while true;
do
cat fifo
done
I have two terminals open, one ...
5
votes
2answers
1k views
Hyper-V: Connecting VMs through named pipe loses data
We are trying to connect two Hyper-V VMs through a serial port. Hyper-V exposes the serial port as a named pipe to the host system, and implements the server end of the named pipe. Consequentially, to ...
5
votes
2answers
870 views
WCF - Fastest interprocess communication
A have a web-accessible (via basicHttpBinding) WCF service which I also want to access from other .NET services on the same machine with as higher performance as possible. I understand that the ...
5
votes
2answers
516 views
Is there any way to sniff named pipe traffic in Windows?
Is there any tool that can monitor/capture/sniff named pipe traffic?
Even when max instance = 1?
5
votes
4answers
4k views
How to create named pipe (mkfifo) in Android?
I am having trouble in creating named pipe in Android and the example below illustrates my dilemma:
res = mkfifo("/sdcard/fifo9000", S_IRWXO);
if (res != 0)
{
LOG("Error while creating a pipe ...
5
votes
2answers
3k 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 (and likely to be ...
5
votes
5answers
4k views
Read/Write to linux Pipe using Java
My query is on what is the best way to read / write to a linux Pipe in Java? I already am using the java.io.RandomAccessFile like
RandomAccessFile file = new RandomAccessFile("/dev/zap/16", "rw");
...
5
votes
3answers
1k views
WCF Named Pipe Security and Multiple User Sessions?
I have setup a WPF application that is single instance using a Mutex, this allows for the application to run within each user account if you are using user switching. The application sets up a WCF ...
5
votes
1answer
3k views
System.IO.Exception: Pipe is broken
I have 2 .NET applications that talk to each other over a named pipe. Everything is great the first time through, but after the first message is sent, and the server is going to listen again, the ...
5
votes
5answers
6k views
Breaking ReadFile() blocking - Named Pipe (Windows API)
To simplify, this is a situation where a NamedPipe SERVER is waiting for a NamedPipe CLIENT to write to the pipe (using WriteFile())
The Windows API that is blocking is ReadFile()
The Server has ...
5
votes
3answers
3k views
What are the differences between pipes in Windows and Linux?
What are the differences between pipes in Windows and Linux?
4
votes
2answers
644 views
Named pipes server read timeout
When using C# NamedPipeServerStream, in case a client doesn't send any message-end-pattern (like \r\n when server reads with ReadLine()) NamedPipeServerStream Read methods will wait forever and no ...
4
votes
3answers
1k views
Named Pipe Server throws UnauthorizedAccessException when creating a seccond instance if PipeSecurity is set
I am trying to write a (elevated privilege) service that will talk to a non privileged winforms application. I was able to have two console applications (one elevated one not) talk back and forth no ...
4
votes
2answers
1k views
How to detect a client disconnect using a named pipe client/server?
I'm learning about named pipes and was playing with the named pipe client and server examples from the MSDN doc:
Named Pipe Server
Named Pipe Client
I modified the client so I can type in messages ...
4
votes
1answer
358 views
.NET IpcChannel doesn't reliably clean up properly?
For some reason, after using an IpcChannel and shutting it down, sometimes the namedpipe stays open, with a thread waiting on it. I cannot make this happen on demand in a debug environment, but it ...
4
votes
3answers
833 views
Named pipe is not flushing in Python
I have a named pipe created via the os.mkfifo() command. I have two different Python processes accessing this named pipe, process A is reading, and process B is writing. Process A uses the select ...
4
votes
1answer
702 views
How do you create Windows security descriptors in managed code?
I have a named pipe that's created in a managed process. I have a 2nd process that tries to open a file handle to the named pipe, however the 2nd process is running under an lower privilege than the ...
4
votes
3answers
600 views
It really looks like OS X has a bug when using poll() on a named pipe (FIFO)… can an expert confirm?
I'm been trying to poll from a set of named-pipes for a little while now and i keep getting an immediate response of POLLNVAL on any named pipe file descriptor. After finding this blog post about ...
4
votes
4answers
359 views
Is there a standard command-line tool for unix for piping to a socket?
I have some applications, and standard Unix tools sending their output to named-pipes in Solaris, however named pipes can only be read from the local storage (on Solaris), so I can't access them from ...
4
votes
4answers
4k views
How do you configure WCF to support FaultContracts where both the host and client are in the same process using a net.pipe?
I'm trying to create an in-process unit test for my service to client interactions using net.pipe binding. Like a good WCF service it uses FaultContractAttribute on service operations to expose ...
3
votes
2answers
59 views
WINE and Windows named pipes
Here is my problem:
I have a closed-source third-party Win32 application, which acts as a server for other programs via named pipes, i.e. it expects its clients to do smth like this:
HANDLE h = ...
3
votes
2answers
175 views
Create Bitmap in C# from char[] buffer
I've got to interface my C++ project with a C# project and send an image to it across a named pipe. OpenCV stores matrix data in a contiguous chunk, starting at uchar* Mat::data. However, to send data ...
3
votes
1answer
122 views
Windows 8 named pipe creation
How I can create named pipe in the Windows 8 with AppContainer integrity level?
3
votes
2answers
193 views
Named pipes or TCP for client/server communication
My application supports multiple instances of the same server process (Windows Service), just like f.e. SQL Server.
The client/server communication will only take place in the same network.
I can ...
3
votes
2answers
141 views
Deleting Named Pipes When Closing
I'm using a named pipe to communicate between a PHP script and a C++ daemon on Linux. The daemon sits and watches the pipe, processing commands when the script gets called and generates them. The ...
3
votes
3answers
661 views
WCF Multiple Apps using NetNamedPipe
I am trying to run multiple WCF Service hosting apps on the same Machine.
I want to run multiple Applications - not multiple services in one application.
var host = new ServiceHost(typeof(MyClass1), ...
3
votes
2answers
149 views
How to reduce File IO on legacy app that writes to disk, and app that reads it in real time (.NET)
My situation is I have a legacy app which I don't have the code for which writes out data to disk every second or so. I have a C# program I wrote which every second reads what was written to disk and ...
3
votes
3answers
364 views
Piping data through an external application on Windows using Java
I have a Java-app with an InputStream, which is copying data to an OutputStream. I want to compress the data from the InputStream using FreeArc, before writing it to the OutputStream.
The problem is ...