Tagged Questions
Inter-Process Communication (IPC) refers to the exchange of data among multiple threads in one or more processes, either locally or on remote computers connected in a network. The available methods of IPC vary based on the bandwidth and latency of communication between the threads, and the type of data being transmitted. IPC includes subtopics such as message passing, synchronization, shared memory, and remote procedure calls (RPC).
6
votes
2answers
130 views
32bit - 64bit interprocess communication
I am tasked with implemented an xml editor based on Win32 as a frontend process, while the business logic will be handled via a 64bit process. In addition the communication between the two processes ...
6
votes
1answer
625 views
LD_PRELOAD equivalent for Windows to preload shared libraries
I'm trying to do exactly what LD_PRELOAD does, i.e. preload a shared library or DLL files on Windows to a given program to override certain functions.
Is there a LD_PRELOAD equivalent for Windows?
I ...
5
votes
2answers
123 views
How can I invoke a method within another process instance of my WinForms app?
I am working on an application that uses a Mutex to ensure that it is the only instance of the application running on the system.
When another instance of the application attempts to start, I want a ...
4
votes
4answers
259 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 ...
3
votes
2answers
34 views
C# get notified when another process makes changes to a textfile
I would like to be notified in my C# application when another process makes changes to a particular textfile.
The reason for this is that I launch a 3rd party tool from my application in order to ...
3
votes
4answers
242 views
Efficient Python to Python IPC
What would be an inter-process communication (IPC) framework\technique with the following requirements:
Transfer native Python objects between two Python processes
Efficient in time and CPU (RAM ...
3
votes
3answers
800 views
Insert text into the textbox of another application
How do I, using C# or C++, insert text into the textbox of another application?
I did this a long time ago and seemed to remember something about using the applications HWND. But since that change for ...
3
votes
5answers
658 views
OS-independent Inter-program communication between Python and C
I have very little idea what I'm doing here, I've never done anything like this before, but a friend and I are writing competing chess programs and they need to be able to communicate to each other.
...
2
votes
1answer
77 views
Matlab and .NET 4.0 data communication
I have an algorithm implemented in Matlab and I'm planning to deploy it as a DLL for integration with a .NET project. The .NET project is a GUI based application a small part of which consists of ...
2
votes
3answers
43 views
PHP async process communication
Is there a way to achieve inter-process (or threading) communication in PHP, but still keep everything run asynchronous?
I want to have a script that creates 4 processes and then terminates ...
2
votes
1answer
64 views
How can I make two process comunicate?
I have two .net applications. One is a normal Windows Forms application while the other is a Microsoft Word COM Add-in. I'm developping both applications with C#.
I need theses two application to ...
2
votes
1answer
164 views
Using “named pipes” in ASP.NET HttpModule
I have an HttpModule that gathers some basic information on every Http request to an ASP.NET site. The module has to send this information for further processing to an external program (a windows ...
1
vote
1answer
41 views
Run m-files Inside Java
I have a matlab function written in an m-file. (it's not written by me and seems a complex algorithm) Now I want to use it with a java application. I searched in internet and learned how to run matlab ...
1
vote
0answers
26 views
Duplex communication with WCF without CallbackContract
What is good practice using WCF for the following scenario?
Basic description
There are several modules (programs) which will provide a WCF Service. Each application can start more than one time. ...
1
vote
1answer
25 views
How would I communicate that I updated a MemoryMappedFile from another process?
I want to use MemoryMappedFile to communicate between a native app and a .NET app. The problem that I am wondering is How do I tell the .NET app that I am done updated the file? or vice versa.
I ...
1
vote
0answers
60 views
how to set up my background process handler
so I'm writing a shell that can have both foreground and background process. I have a:
signal(SIGCHLD, childHandler);
and thus I have handler:
void childHandler(int signum){
int status, PID;
...
1
vote
3answers
79 views
what is the best and fastest way to communicate between two applications?
I made a java program just for fun this program allows you to control the seconds computer mouse using the first computer's mouse. so everytime the mouse moves some the x and the y of the cursor is ...
0
votes
0answers
23 views
Listening to COM communication between client and server
Suppose I have 2 programs, COM server [out-of-process] and COM client, which communicate between them. Suppose I cannot change both of them (The source code is not accessible).
Is there any external ...
0
votes
0answers
111 views
EXC_BAD_INSTRUCTION when sending message to XPC Service
I'm trying to use an XPC Service for inter-process communication. I've added an XPC service target to my project, and then when I try doing a xpc_connection_send_message I get EXC_BAD_INSTRUCTION. ...
0
votes
3answers
75 views
Communication between an android c natif application and an android application
I want to ask if someone know how to make communicate a natif c android application and an classic java android application, the natif c android application running in background.
Thank's.
0
votes
1answer
47 views
Implementing Kernel in C and Shell in C#
Is it possible to implement MVC architecture's control in one language and view in other language.
What I'm looking for is a pattern to have a "kernel" in C and the "shell" in C#.
Or like "server" in ...
0
votes
0answers
57 views
Inter thread communication
So I have two threads namely main thread and the control thread what I call it running on both the server and client. The main thread's purpose is to receive data from the client and write to a ...
0
votes
1answer
42 views
Is socket communication reliable protocol for Inter-process communication?
I'm designing a communication protocol that will be used to communicate between two PC applications using socket connection. The most common case is when both application work on the same machine, but ...
0
votes
1answer
41 views
A question on semaphore value if a process terminates abnormally after decrementing the semaphore value
if a process goes down after decrementing the value of semaphore from 1 to 0, as per my understanding the value of semaphore remains as 0.
If the same process comes up again and tries to re-acquire ...
0
votes
1answer
184 views
Push notification for content resolver from content provider
I want to know if there is a way to inform content resolver/s if the content provider change data.
In my case there is an app that shows data base content. There is another app, that modifies data ...
0
votes
2answers
186 views
Interprocess communication with a Daemon
I want to implement a Unix daemon (let's call it myUnixd), and want the user to be able to interact with this daemon via the command line, for example:
myUnixd --help # will display help information
...
0
votes
1answer
46 views
Pausing a DLL export until triggered by an EXE
Does anyone have any ideas of how a DLL function can be made to wait for “input”, and how to call a specific instance of a DLL export?
I’m trying to convert a Windows service to a DLL. It contains a ...
0
votes
2answers
83 views
Recommended communication pattern for web frontend of command line app
I have a perl app which processes text files from the local filesystem (think about it as an overly-complicated grep).
I want to design a webapp which allows remote users to invoke the perl app by ...
0
votes
2answers
103 views
basics to create a MML console in Python
I am looking to have a MML (man machine language) console written in Python as the only entry point to control and monitor a back-end process. Basically will be able to:
attach to an existing ...