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). The semantics and APIs differ substantially between the platforms.

learn more… | top users | synonyms

2
votes
2answers
126 views

Named pipes in Java and multithreading

Am I correct I's suppose that within the bounds of the same process having 2 threads reading/writing to a named pipe does not block reader/writer at all? So with wrong timings it's possible to miss ...
0
votes
1answer
26 views

WCF, Named Pipes invoke method by url

I write some plugin application (let's call it "A") who works with other done, external application who share theri api (let's call it "B"). From the plugin (in app B) I can't use advanced libraries ...
1
vote
0answers
24 views

WCF to Named Pipe does not work when run as a Scheduled Task

I created a process monitoring program (C#) that uses WCF to handle logging from a number of processes that I am running on a server. Everything is local to the server, and the WCF base address is ...
-3
votes
0answers
25 views

NamedPipe using java [closed]

how to implement named pipe in java Please suggest.
0
votes
2answers
17 views

Named pipes without child process

I used a FIFO for a simple read/write programme where the input from user is written to standard output by the writer function. The question is however, am I able to run this program without creating ...
-1
votes
0answers
26 views

win32: Named Pipe visible/accessible only from current process [closed]

I basically need in-process communication at the moment. I choose named pipes for in-process communication because soon program will be modified, added authentication and so on. At the moment, I would ...
1
vote
2answers
45 views

Read from a pipe(FIFO) then comparing string

I'm reading from a pipe. char buf[255]; while((nbytes = read(fd,buf,sizeof(buf)) > 0)) // fd is the opened pipe { if(strcmp(buf,"IN")==0){ printf("%s\n", "SET IN"); ...
-1
votes
0answers
18 views

Creating named pipes without sudo rights

We have a embedded ARM device running on linux. This setup has an application and a user mode serial driver which controls a HW. The application communicates with the driver all the time in a ...
1
vote
3answers
76 views

Async two-way communication with Windows Named Pipes (.Net)

I have a windows service and a GUI that need to communicate with each other. Either can send messages at any time. I'm looking at using NamedPipes, but it seems that you cant read & write to the ...
0
votes
0answers
20 views

ReadFile() causes hang on Windows XP SP3 using named pipes

We have a browser plug-in that launches a helper executable to read certain file types. Our helper program and the plug-in use named pipes to communicate with each other. All is well, but on a ...
-2
votes
3answers
66 views

How do I make connection between csharp and Java

Csharp App1 have implemented named pipes communication. It requires several parameters to start. I have functional pascal App2 class which connects with App1 with following method: //declaration of ...
0
votes
0answers
15 views

Both parent process and child process stuck at opening named pipe

Parent process has successfully created named pipes for each helper process using mkfifo(pipe_name, S_IWUSR | S_IRUSR) Then it launches helpers, and opens each pipe by: ::open(pipe_name, O_WRONLY); ...
0
votes
2answers
37 views

Named pipes app freezing after sending a request to NamedPipeServerStream

I've written some code that uses named pipes to send a string from one application to another. It works fine once, but when the client tries to send the to the server application for a second time it ...
0
votes
0answers
59 views

multiple writefile and readfile in named-pipe

I need to pass some string by pipe. we can't pass a pointer by pipe and we must pass data. for passing a string we can send an array of chars. but I don't want to use array. I need a way to send ...
1
vote
1answer
77 views

Read and delete from FIFO in C

I am building a server that communicates through FIFO with it's clients. So far I've managed to create a FIFO, run a new thread, once a message arrives in the FIFO and output the message from the ...
0
votes
1answer
58 views

What is the best, most secure way to write to a named pipe in Linux?

What is the best, secure way to write to a named pipe in Linux? Or, how can I make a named pipe secure? Here's how I write to the pipe on linux using PHP: $con = fopen("/tmp/myFIFO", "w"); ...
2
votes
0answers
46 views

Calling Asychronous Named Pipes instantiated in dot net from Java

This question is related to an earlier, more general question I asked on Java-C# communication, but I think it's probably specific enough to ask separately (let me know if you think I'm wrong - I ...
1
vote
2answers
389 views

What might cause EndpointNotFoundException on local WCF named pipes?

I've got a system set up to let a worker process do some job and am coordinating with named pipes between the GUI process and the worker process. I kick off the worker process here: ...
0
votes
1answer
51 views

How to make a compressed file directly usable as a regular file?

We have a custom compressor for genomic data called CRAM, and althogugh it provides superior compression people are afraid to use it, because it is not-so-easy to handle with bioinformatic tools as ...
2
votes
2answers
150 views

How to send a file through a named pipe in C?

I have two programs, server and client. Server should read a file and then send its content through a named pipe to client. But my server reads only two chars from file, and then exits. What is wrong ...
2
votes
0answers
89 views

Serial numbers, created and modified in SQL Server

I'm needing to add serial numbers to most of the entities in my application because I'm going to be running a Lucene search index side-by-side. Rather than having to run an ongoing polling process, ...
0
votes
0answers
68 views

psexec won't forward stdout/err/in

The situation: I am running psexec.exe from one windows machine to another and would like to run a python script on the remote machine and look at the output of the script without having to pipe it to ...
0
votes
1answer
64 views

Get process ID of a client that connected to a named pipe server with C#

I'm not sure if I'm just not seeing it, or what? I need to know the process ID of a client that connected via a named pipe to my server from an instance of NamedPipeServerStream. Is such possible? In ...
0
votes
1answer
57 views

How do I prevent multiple instances of a process(NPAPI plugin) from running in Posix?

On windows, I solved this issue by creating a named semaphore. If plugin 1 crashes while holding the semaphore, the semaphore is released. But its not the case with Posix (on Mac), where the semaphore ...
1
vote
1answer
62 views

can not Impersonate the permission in the NamedPipes if client and server are in the different machines

I got the UnknownErrorException with error code 1346 for named pipe, the code as below (notes: the client and server are in different machines) server code: public static void ReadFile() { ...
2
votes
1answer
205 views

WCF NamedPipe CommunicationException - “The pipe has been ended. (109, 0x6d).”

I am writing a Windows Service with accompanying "status tool." The service hosts a WCF named pipe endpoint for inter-process communication. Through the named pipe, the status tool can periodically ...
0
votes
0answers
36 views

What is the proper place to put named pipes on Linux?

I've got a few processes that talk to each other through named pipes. Currently, I'm creating all my pipes locally, and keeping the applications in the same working directory. At some point, it's ...
0
votes
1answer
94 views

Are memory mapped files faster than IPC?

I was reading SQL Server Internals and Troubleshooting (Wrox) and it effectively says that Shared Memory is the default connection method, followed by TCP and then Named Pipes. What's curious though ...
0
votes
1answer
75 views

SDF Local database Connection error: 40

Hi I am trying to connect to a local SQL Server Compact database (.sdf) in a Windows forms project and have been facing this problem for quite some time. I am not allowed to use datasets for the ...
1
vote
1answer
79 views

Consume WCF from Java client hosted on Linux server

Can WCF service hosted as TCP IP or Named Pipes on windows server be consumed by Java based application hosted on linux server? I have a wcf service which requires low latency and very high calls per ...
0
votes
2answers
77 views

Spawn node child_process with named pipe as stdin

Say I have a named pipe on linux: mkfifo lk.log From the command line, I can do this to print out anything written to the name pipe file. node monitor.js < lk.log and pretend this is what the ...
0
votes
0answers
43 views

Named Pipes and XmlSerializer

I'm trying to send a simple object through a named pipe from one program to another using XmlSerializer. The problem is that the entire XML string does not get sent. You can see it if you send the ...
1
vote
2answers
146 views

Sharing header file between a C program and a shell script

How can I share a C header file with a shell script? The shell script communicates with the C program via named pipes. Let us assume that enum SAMPLE_ONE, which is defined in the C header file is ...
0
votes
1answer
59 views

Obtaining a HANDLE to a named pipe opened in an external process (win32)

I have a logging facility (descendent of SS_Log) that consists of an independent log viewer and a C++ lib to send messages via a named pipe. The log viewer is launched by the client through the C++ ...
1
vote
1answer
40 views

named pipe terminating session

I'm writing a short program that's polling the buffer of a named pipe. To test it out, I'll log into 'nobody' and echo into the pipe. while it's hanging, I log in from a different user and run the ...
0
votes
4answers
75 views

CreateNamedPipe ERROR_INVALID_NAME

Code snippet: void RunThread(void* unused_args) { PSECURITY_DESCRIPTOR sdsc; ULONG size; ConvertStringSecurityDescriptorToSecurityDescriptor("S:(ML;;NW;;;LW)", SDDL_REVISION_1, &sdsc, ...
0
votes
1answer
202 views

WCF Named Pipes Client State always Opened

I'm trying to port some of my old .NET Remoting IPC code over to WCF Named Pipes and I know I'm probably doing something stupid here... I have a Windows Service using a ...
0
votes
0answers
138 views

Windows Named Pipes and Multithreading

I have two processes that communicate through a single named pipe in duplex and binary mode (not message). Each process has two threads, one that writes to and one that reads from the pipe. Reading ...
3
votes
1answer
182 views

can't write to named pipe in linux bash

I'm trying to write to a named pipe, made with mkfifo. But when I run the command, (ex) ls > myNamedPipe, I can no longer enter commands into the bash. I can still write characters and that's pretty ...
0
votes
1answer
68 views

Using NamedPipes causes issues with Antivirus

I am seeing a strange issue with my application, it uses NamedPipes for IPC communication. The only file that ever gets transferred over it is an serialized to xml object. I have not seen the issues ...
1
vote
2answers
148 views

FIFO (named pipe) in C

Recently I have tasked with customizing one of the applications that our groups uses quite regularly. The application is written in C, something that I don't have a whole lot of experience in. I ...
0
votes
1answer
49 views

WindowsService and NamedPipes: UnauthorizedAccessException

When I try to access a NamedPipeServer (Running as a WindowsService) from a WPF-Testapp i always get an UnauthorizedAccessException. Server: class PipeConnector { private volatile bool ...
3
votes
1answer
107 views

Open an ifstream on a pipe with no data without blocking

I am trying to use an ifstream to open a named pipe that will eventually have data written to it. std::cout << "Opening " << name << std::endl; std::ifstream ...
0
votes
1answer
66 views

WCF Client Can't connect to Host in same application instance

I have a WPF GUI that has two buttons. Button 1 creates a new WCF Host that listens for requests via Named Pipes. Button 2 uses a Client Proxy DLL to query the Host via Named Pipes. Clicking ...
1
vote
1answer
48 views

Can I extract files from one tarball directly into a new one?

I am working on a high performance computing cluster and for reasons I won't explain here they like us to send ONE file back and forth over the NFS. My jobs use data generated from previous jobs and ...
2
votes
1answer
157 views

.NET WCF Named Pipes vs COM Object Performance

I have a .NET \ C# class that loads a structure into memory. There's a C++ application on the same machine that need to be able to query the in memory structure. My question is around performance. I ...
2
votes
3answers
144 views

Communication between exe?

I have several users on a single Windows Server 2012 (they are using Remote Desktop). I have two (vb.net) programs, that need to communicate with eachothers - that is ... each user have two ...
0
votes
0answers
38 views

write file before named pipe client connected

i have two apps, one is server, one is client. The server creates the named pipe first, then client connect it. But sometimes, the server may writeFile before the client connect, which will lost the ...
0
votes
2answers
170 views

Communicating between Virtual Machines: creating a named pipe?

Using the latest release of VMware: Trying to create a connection between two virtual machines (one with Windows OS, the other with a Linux OS) My question is simply: how do you create a ...
0
votes
1answer
85 views

How do I configure an ASP.net web application to invoke a WCF service host factory for named pipe calls?

I am hosting a WCF service in an ASP.net application. The service has two endpoints, an HTTP endpoint and a named pipe endpoint. I'm trying to consume the service from within the same web ...

1 2 3 4 5 13