-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I would like to read/write from a named pipe/FIFo queue under Linux.
I have tried the standard classes StreamWriter and other classes from System.IO, but it fails because it is using seek.
Has anyone ever written/read from a named pipe using Mono?.
I am managing to read and write - but not the same…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I need to read and write some data through named pipes.
I have tested it in a simple Ruby app, and it works nice.
But I dont know, where should i put it in my Rails app? I have heard about Rake tasks, but i don't sure, is it right solution.
I need to open a pipe-file, and listen to data. If there…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 = CreateFile(GetPipeName(), GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
char data[1024];
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i know Named Pipes are Protocols. but i have not seen even 1 example how to use them?
can u tell me what are the Named pipes ?
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I have an app that launches an authentication helper (my script) and uses STDIN/STDOUT to communicate.
I want to re-direct STDIN and STDOUT from this script to two named pipes for interaction with another program.
E.g.:
SCRIPT_STDIN pipe1
SCRIPT_STDOUT < pipe2
Here is the flow I'm trying…
>>> More