0
votes
0answers
15 views

Got a DBus::Path with libdbus-c++ - what next?

I have a short test program I am using to work out how to use D-Bus with the libdbus-c++ library. I am trying to connect to the wpa_supplicant D-Bus API (documented here) in order to read a list of ...
0
votes
0answers
17 views

Several UIs accessing one (server) proecess - which IPC?

I'm new here and I have a question which I could not find answered by searching. I've written a program accessing a database in C++ on Linux. Now I would like to be able to give different UI ...
2
votes
1answer
97 views

Serialization as an IPC mechanism?

I wrote an implementation and an auto code generator for allowing different process to do Inter process Communication using Message queues. My Implementation works fine with the primitive data ...
0
votes
1answer
84 views

Passing non PODs [ Plain old DataTypes ] over IPC

I am writing an implementation for doing IPC. User do a call, I take all these parameters and pass them onto other process. I have written an automatic code generator for such functions based on ...
2
votes
2answers
118 views

Linux IPC selection?

I have two processes A and B. A and B needs to communicate (Bi-directional) sometimes for passing signals, messages etc. I have done some basic research about IPC's available in Linux like semaphore, ...
1
vote
1answer
100 views

dbus-daemon - session.conf - windows configuration issue with the noncefile

I have an issue with running dbus-daemon on Windows 7 platform. I downloaded dbus 1.4.18 sources and built it using cmake and visual 2010 compilator. Then I started dbus-daemon using dbus-launch and ...
0
votes
1answer
114 views

Quickly Inter-Process Communication with signal about changes

I know several ways for IPC, such as: Shared memory DBus, COM and other technologies Via file First method to share memory directly into RAM, but i can't know about change in common memory ...
0
votes
0answers
33 views

Managed DBus-Sharp and native DBus compatibility and x64 support?

I want to use Dbus and DBus-Sharp when integrating C++ and C# IPC peaces of our platform. Are they compatible? Does DBus support 64 bit Window processes? Does DBus works over Windows named pipes? ...
-1
votes
2answers
248 views

Does the Windows Qt binary installer support DBus out of the box?

Does the Windows Qt binary installer support DBus out of the box? Specifically: version 4.x version 4.7.x version 4.8.x NOTE: Version 5.x is still in active development so I won't include 5.x as ...
0
votes
2answers
150 views

Is a bus always necessary for dbus

I am trying to use the low level c-api of DBUS to implement a server-client over sockets. My question is .. is it necessary that a bus should be used always for dbus communication. And does a BUS just ...
2
votes
1answer
284 views

is DBus what I'm looking for?

I need an IPC system on Linux. My requirements are: packet/message oriented ability to handle both point-to-point and one-to-many communication no hierarchy, there's no server and client if one ...
2
votes
1answer
375 views

PySide IPC with signals/slots

I've been trying to figure out if there's any way to manage IPC in PySide and still take advantage of Qt's signals/slots mechanism. The QtDBus module sounds great, but it doesn't appear to be ...
1
vote
1answer
154 views

DBusWatch usage

Could somebody point me out how to use DBusWatch structure and the corresponding family of functions with prefix dbus_watch_ in multithreading applications? It's important for me to use pure C DBus ...
3
votes
2answers
450 views

D-Bus GLib bindings—unable to get code off the ground

I've been playing with GLib's D-Bus bindings, trying to get something (anything) working, with very limited success. I've been trying to get Ross Burton's example code to compile and run, but keep ...
0
votes
1answer
215 views

high-level IPC library needed

Suppose that we have four process A, B, C, and D. Usually, B-D send packets to A and get a reply from A. (The packet represents a simple command, so it is very small) However, sometimes, 'A' ...
3
votes
4answers
2k views

What is the underlying transport for D-Bus?

D-Bus allows programs to communicate. How is this IPC implemented? Unix domain sockets, shared memory + semaphores, named pipes, something else? Maybe a combination?
4
votes
2answers
4k views

DBus equivalent for Windows

Anyone know of a Linux/DBus sort of mechanism for Windows? Thanks
0
votes
1answer
875 views

DBus query

I am using DBus in a project. I understand from DBus specification that for low level communication, it uses Unix domain sockets. I don't want to use Unix domain sockets for low level communication ...
3
votes
2answers
460 views

Are there any good recent reference books on IPC programming?

I grew up on UNIX Network Programming, Volume 2, Second Edition: Interprocess Communications (RIP, Richard Stevens), which was the essential reading for designing a multiprocess program back in the ...