1
vote
1answer
17 views
What IPC method should I use between Firefox extension and C# code running on the same machine?
I have a question about how to structure communication between a (new) Firefox extension and existing C# code.
The firefox extension will use configuration data and will produce …
5
votes
2answers
78 views
passing events from erlang to Clojure
I'm looking for a way to pass events back and forth between Clojure and erlang.
has someone done this before?
how should I encode the (immutable) messages in a flaxable general w …
3
votes
4answers
66 views
How to IPC between PHP clients and a C Daemon Server?
Hi all, and thanks for taking a look at the question.
The background
I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time …
0
votes
2answers
42 views
transparent process creation for cocoa components
I have an application A which may or may not need to spawn an application B and will communicate with it using remote messaging (via NSConnections etc.).
While i know how to do th …
0
votes
3answers
91 views
Linux Pipes as Input and Output
I would like to do the following inside a C program on a Linux os:
Create a PIPE using a syscall (or 2)
Execute a new process using exec()
Connect the process's STDIN to to the p …
0
votes
1answer
35 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
3answers
40 views
Shared POSIX objects cleanup on process end / death.
Hi,
Is there any way to perform POSIX shared synchronization objects cleanup especially on process crash? Locked POSIX semaphores unblock is most desired thing but automatically ' …
0
votes
1answer
62 views
Qt portable IPC: only QSharedMemory?
Hi,
I'm looking for suggestions about choosing a portable way to achieve local IPC in a robust way, since i'm new to C++ and would like to avoid common pitfalls of fiddling with s …
1
vote
3answers
210 views
+100
Call unmanged Code from C# - returning a struct with arrays
[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.
Hi,
I'd like to call an unmanaged function in a self-wri …
2
votes
3answers
140 views
Forks and Pipes in C UNIX
I'm not sure if I am even barking up the right tree here... but here goes.
I'm trying to pass data from my parent process to all children. It's a simple server program that basica …
0
votes
2answers
69 views
IPC between Python and C#
I want to pass data between a Python and a C# application in Windows (I want the channel to be bi-directional)
In fact I wanna pass a struct containing data about a network packet …
0
votes
5answers
65 views
Reliable non-network IPC in Java
Is there a reliable, cross-platform way to do IPC (between two JVMs running on the same host) in Java (J2SE) that doesn't rely on the network stack?
To be more specific, I have a …
2
votes
3answers
56 views
Interoperate between C# and Java using web services without a Java EE application server?
I'm in a difficult position: We have a 3rd party enterprise system that exposes a Java-based API. However, we are a 100% .Net oriented development team. Essentially, I need to w …
2
votes
3answers
47 views
Using message queue between unrelated processes
Hello,
I am trying to use a message queue for communication between two unrelated processes in Linux. I am aware that using a common key value will allow us to open the same messa …
3
votes
1answer
85 views
What’s the fastest Perl IPC/message queue for a single machine?
I'm working on a (primarily) Perl project and want to use a message queue to isolate processes from each other. I have a work flow like this:
Input -> Receiver -> Processor(s) -> …
