Top "Named-pipes" questions

A named pipe is an inter-process communication mechanism, which exists both on Unix and Unix-like systems (where it is also known as a FIFO and is file-like), and on Microsoft Windows (where it is an in-memory kernel object).

mkfifo file permissions not being executed correctly

The following line in my C program should provided All/Group/Owner read and write permissions mkfifo("/tmp/dumbPipe", 0666) But …

c unix permissions named-pipes
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 …

serial-port named-pipes hyper-v
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 …

java nio named-pipes nonblocking
Named pipes usage. Multiple clients, one server, multiple parallel requests

I'm trying to implement a named pipes server in .NET. The client will be C++. The nature of the data …

.net named-pipes
Win32 named pipes and remote clients

Can I access a named pipe on computer A from computer B given computer A's IP address? If so, what …

c++ windows winapi pipe named-pipes
read not blocking on named pipe

i have the following bit of C code which reads from a pipe and then should block but it never …

c linux named-pipes
How to host net named pipe binding enabled wcf application in iis?

I have a following configuration in my wcf service <endpoint address="" binding="netNamedPipeBinding" contract="WcfWithNamedPipe.IService1" bindingConfiguration="WcfWithNamedPipe.netNamedPipeBinding"&…

.net wcf wcf-binding named-pipes netnamedpipebinding
There was an error writing to the pipe: Unrecognized error 232 (0xe8)

I call a method in a WCF proxy, where the binding is named pipes. At the moment, the code fails …

wcf named-pipes
How to flush a pipe using bash

I have a script that writes to a named pipe and another that reads from the pipe. Occasionally, when starting …

bash named-pipes