Tagged Questions

11
votes
9answers
2k views

What is the best choice for .net inter-process communication?

Should I use Named Pipes, or .NET Remoting to communicate with a running process on my machine?
10
votes
11answers
1k views

cross platform IPC

Hi, I'm looking for suggestions on possible IPC mechanisms that are: cross platform (WIN32 and Linux at least) Simple to implement in C++ as well as the most common scripting languages (perl, ruby …
7
votes
5answers
682 views

fast-ish python/jython IPC?

All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django on CPython. I've …
6
votes
3answers
151 views

Is it better to use TThread’s “Synchronize” or use Window Messages for IPC between main and child thread?

I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (up to 16 concurrent) that need to update a grid control on my main …
6
votes
2answers
99 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 way? Should IPC be …
6
votes
4answers
1k views

Best way for interprocess communication in C++

I have two processes one will query other for data.There will be huge amount of queries in a limited time (10000 per second) and data (>100 mb) will be transferred per second.Type of data will be an …
6
votes
7answers
522 views

Cross-platform, cross-language messaging system?

I'm developing a set of applications that work together to create a system for processing metering data. There's several reasons I want to have them loosely coupled and the system should be extensible …
6
votes
1answer
786 views

Why are pipes considered dangerous to use in Windows/unix/linux?

Why are pipes considered dangerous to use? What can be done to avoid these security issues? I'm mostly interested in Windows, but if you have other OS information, please provide.
6
votes
3answers
752 views

How do you communicate between Windows Vista Session 0 and Desktop?

In prior versions of Windows before Vista you could have a Windows Service interact with the current logged in desktop user to easy display information on the screen from the service. In Windows Vista …
6
votes
5answers
4k views

Interprocess communication for Windows in C# (.NET 2.0)

I've never had to do IPC on Windows before. Currently I'm developing a pair of programs, a standard GUI/CLI app and a windows service. The app has to tell the service what to do. So, assuming the …
5
votes
8answers
408 views

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-written C++ dll. This …
5
votes
5answers
835 views

How can I launch an instance of an application using Python?

I am creating a Python script where it does a bunch of tasks and one of those tasks is to launch and open an instance of Excel. What is the ideal way of accomplishing that in my script?
5
votes
2answers
289 views

Inter-plugin communication in Eclipse

Is it possible to create Eclipse plugins that auto-discover eachother? I am developing a set of plugins that need to operate in two primary situations: individually in concert with each other. …
4
votes
4answers
178 views

What’s the best way to notify a non-web application about a change on a web page?

Let's say I have two applications which have to work together to a certain extent. A web application (PHP, Ruby on Rails, ...) A desktop application (Java, C++, ...) The desktop application has to …
4
votes
6answers
360 views

What’s the best IPC mechanism for medium-sized data in Perl?

I'm working on designing a multi-tiered app in Perl and I'm wondering about the pros and cons of the various IPC mechnisms available to me. I'm looking at handling moderately-sized data, typically a …

1 2 3 4 5 12 next
15 30 50 per page