IPC: Communication between Qt4 and MONO processes (on linux)

Posted by elcuco on Stack Overflow See other posts from Stack Overflow or by elcuco
Published on 2010-05-07T08:02:58Z Indexed on 2010/06/06 20:52 UTC
Read the original article Hit count: 340

Filed under:
|
|
|

I have to connect a Qt4 application to a mono Application. The current proof of concept uses network sockets (which is nice, I can debug using nc on the command line).

But I am open to new suggestions. What are my alternatives?

Edit:

The original application stack is split into two parts: server + client. The client is supposed to show pictures and videos. Since we found that this is not possible in a sane way in Mono, we split the client into two parts:

server -> client -> GUI

In the original implementation the client+GUI were the same application. Now client is in C# (running on Mono), and the GUI is Qt4. Rewriting the client in Qt4 is not an option.

Right now the communication between the client and the GUI is been done using TCP sockets through localhost. I am looking for better implementations.

© Stack Overflow or respective owner

Related posts about c#

Related posts about mono