0
votes
1answer
32 views
Checking the status of my PHP beanstalkd background processes
I have a website written in PHP (CakePHP) where certain resource intensive tasks are handled by a background process. This is done through the Beanstalkd message queue. I need some …
1
vote
7answers
88 views
What is the easiest way to do inter process communication in C#?
I have two C# applications and I want one of them send two integers to the other one (this doesn't have to be fast since it's invoked only once every few seconds).
What's the easi …
0
votes
1answer
9 views
[Android SDK] Throw a custom exception from a service to an activity
Hi,
I'm currently working on an XMPP app' on Android and I'm pondering about the best way to throw a different type of Exception than a RemoteException to my activity from my serv …
1
vote
5answers
97 views
How can I connect to a remote machine via TCP and UDP with Perl?
I have a script that runs on a server and I want it now to send messages to my PC. I want to send TCP or UDP messages to some port.
What is the best way to do this (a tutorial wil …
1
vote
2answers
33 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 …
0
votes
1answer
12 views
posix_ipc python package equivalent for Windows?
Inter process communication primitives (Semaphores, Shared Memory) in python on windows? posix_ipc works great on linux, anything similar for windows?
6
votes
2answers
97 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
70 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
1answer
42 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 …
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
105 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
69 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
43 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 ' …
2
votes
3answers
160 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 …
2
votes
3answers
63 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 …
