D-Bus is a message bus system, which allows client programs to call procedures on a service - basically, the machine-local equivalent to XML-RPC and SOAP.

learn more… | top users | synonyms

3
votes
0answers
381 views

glassfish crash caused by libdbus on debian squeeze

I'm running glassfish v3.1.1 build 12 using java build 1.6.0_29-b11 on linux debian squeez (6.0.4). I'm running a webapp which is calling an external soap webservice. Every now and then the jvm ...
3
votes
0answers
169 views

how to expose methods on system bus using Qtdbus

I want to expose methods of my application on System bus using Qt Dbus in Qt Creator. while using session bus ,the methods get exposed, but with system bus I am only able to see the Service name with ...
2
votes
0answers
60 views

Browsing avahi services with python misses services

I need a class which gives me a list of avahi services of a certain type which a currently available. Therefor I run a gobject.MainLoop() (line 23-25) in a separate thread an add a browser for each ...
2
votes
0answers
28 views

Intercepting D-bus method returns

I'm attempting to write a Python script which intercepts D-bus method calls to a particular interface. However, I also need to intercept the corresponding method returns. I understand how to intercept ...
2
votes
0answers
52 views

DBUS - Is it possible to have 2 instance of session bus or something similar?

I am facing some weird requirement with DBus based implementation. I would like to know if this is possible to have 2 instance of DBUS_SESSION_BUS or anything similar to this. Well, the reason why I ...
2
votes
0answers
368 views

Krusader crashed on Mac OSX 10.7.2

i've installed krusader via macports but i'm unable to run krusader. w-4jesc:web_cms_dms w-4jesc$ /Applications/MacPorts/KDE4/krusader.app/Contents/MacOS/krusader KGlobal::locale::Warning your global ...
2
votes
0answers
152 views

Using DBUS for application monitoring

After moving some time ago from primarily Java to a selection of languages, most notably Python (but also C, C++ and others) I was looking for a good analogy to JMX in order to provide application ...
1
vote
0answers
49 views

Matplotlib won't plot: dbus issue?

I have a rather strange scenario. I'm running on a very old installation, so I've compiled most of the tools I use. First, this is a server. It is exclusively used by SSH-ing into it. But whoever ...
1
vote
0answers
36 views

Net::DBus with ActiveState Perl

Apologies If I misunderstood anything incorrectly, I am very new to DBus having beginner experience in Perl. I am working for a project where I need to connect to a remote dbus (running on linux) ...
1
vote
0answers
79 views

Python - Blocked thread at os.listdir

I have a mainloop in my program's main thread (The mainloop is a DBusGMainLoop waiting for a disk I/O event), every time an event handler is called a new thread is dispensed for some file copying. The ...
1
vote
0answers
99 views

Qt DBUS signals are delayed when process is not started as user

I am having a strange problem trying to get a small program running at boottime before any user has logged in. I have used different methods of running the program at boot and nothing has helped me ...
1
vote
0answers
294 views

Emit signal is not happening in bluez dbus

I wrote some basic code to access the "start inquiry" bluez functionality by using dbus api's. Start Inquiry is happening that I could saw on hcidump. But I am not receiving any signal from the dbus ...
1
vote
0answers
95 views

dbus std::vector<> data transfer with callback method

I like to transfer C++ std::vector<...> data to a glib client Problem: If I send vector data I did not get a callback into my glib client callback handler. Vector data are sure on the bus ...
1
vote
0answers
159 views

Pidgin script with Python/ Get Focus Signal

I am creating a script in Python to integrate Pidgin with Unity (Ubuntu 12.04), I've managed to do the counting notifications system using the Unity API, but i dont know what event or signal that is ...
1
vote
0answers
119 views

QT-Dbus signals/slots?

How can I hook my QT slot to respond to a D-BUS signals generated by some 3rd party service? Is the following right? QDBusConnection bus = QDBusConnection::systemBus(); bus.connect("com.me.foo", ...
1
vote
0answers
301 views

Implement A2DP sink on linux system using dbus-python api

I want to implement a custom A2DP sink on my linux system running the latest Ubuntu 12.04 with the latest bluez stack. My Basic Requirements are: Linux system to act as a receiver(like a bluetooth ...
1
vote
0answers
104 views

DBus from another user

I'm trying to connect to DBus from a PHP program. When I run the program from command-line, it works, but when it is run by the Apache webserver (running as user apache) it cannot connect to the bus. ...
1
vote
0answers
149 views

Rename konsole tabs in vim with globs makes things wrong

I have the following configuration in my vimrc to have the title of kde Konsole tabs automatically changed accordingly to the title of the current file edited in `vim. " rename konsole terminal tab ...
1
vote
0answers
181 views

Getting a VPN connection state via DBus in python

I'm trying to get state of a VPN connection via DBus in Python. Here is my code: name="testVPN" proxy = dbus.SystemBus().get_object('org.freedesktop.NetworkManagerUserSettings', ...
1
vote
0answers
132 views

Marshalling 16 bit unsinged int in Qt DBUS

In QT we have following representations of 16 bit unsigned available: typedef unsigned short int uint16_t; (in stdint.h) typedef unsigned short quint16; (in qglobal.h) What is the ...
1
vote
0answers
95 views

Listening all upstart jobs and events by python

I want to listen all Upstart jobs/events on a Linux host (Amazon EC2 Linux AMI) by Python, in order to bridge all jobs/events to a RabbitMQ server, so that a worker host can record it and do something ...
1
vote
0answers
152 views

Using QtRuby with DBus signals

I have a Qt GUI script written in Ruby that I would like to get signal from DBus when a new USB device is detected. The scripts works if I connect to my slot to DBUS signal without any parameter, but ...
1
vote
0answers
208 views

Cross-compile QtDbus application for Linux/MIPS

I am trying to cross-compile dbus-chat example (included in qt-everywhere-opensource-src-4.6.2) for Linux/MIPS device. I am getting following error while building: ...
1
vote
0answers
267 views

d-bus administration

all I have created simple application using d-bus, it works on kubuntu but doesn't work on my embedded linux. When I run a qt application it says: Not connected to D-Bus server When I try to run ...
0
votes
0answers
8 views

Change Emacs 24 theme depending on connected monitors

I'm using Emacs 24 on my Ubuntu Linux running laptop, which is usually connected to a very nice external monitor, where I like one color theme (using deftheme). But when I'm on the road, I like ...
0
votes
0answers
6 views

How to overwrite dbus method using signature

I made two method using dbus as below. member input-sig output-sig callback-func getstatus NULL "i" cb_1 getstatus NULL "uu" cb_2 Is it possible to overwrite the method ...
0
votes
0answers
30 views

How to detect if a method has been called over D-bus

I want to be able to detect if a python method has been called over D-Bus or just called 'as it is' on the object. @dbus.service.method(IFACE, in_signature="v", out_signature="b") def Test(self, ...
0
votes
0answers
26 views

Dbus glib interface design and usage

In our project we use dbus for Inter Process communication. We have one interface where all the methods that need to be exposed to other process are tied together. That is only one interface for all ...
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 ...
0
votes
0answers
37 views

Binding a GTK widget to a DBus property

I'm writing an GTK-based "client" for controlling a "server" through a DBus API. I'm not sure how to best implement a binding between a GTK widget in the client and properties in the server that can ...
0
votes
0answers
82 views

How would I integrate with the Ubuntu 13.04 sync menu

Will the sync menu allow the usage of D-Bus to work with it? I'm working on a application that uses Java but would still like to integrate as much as possible in Ubuntu. So would it be possible to ...
0
votes
0answers
31 views

bluetooth PCM communication is deaf

I have the following system: bluetooth headset <-- HFP, HSP --> marvell bluetooth <-- PCM --> gsm modem What I know: First part works: rfcomm0: 00:06:C6:36:02:92 -> 00:1A:7D:D0:04:6D ...
0
votes
0answers
9 views

dbus server always calls on name lost callback. its not getting session with daemon

Having doubt regarding DBus. I installed d-bus in my linux pc and working with terminal. then i did dbus-launch for running the dbus daemon in session mode. I have written the dbus server code with ...
0
votes
0answers
31 views

Dbus-Python for Windows

Can anyone tell me which is the best library for dbus python on window 7 32 bit? I am using the Python 2.7. I download the latest zip for dbus-python and use it but it gives many imports errors like ...
0
votes
0answers
33 views

dbus-monitor --system command not responding to changes made to network interface

dbus-monitor --system command not responding to changes made to network interface, on Raspberry pi containing Linux raspberrypi 3.6.11 I am new to use Raspberry and Dbus too. I need to check the ...
0
votes
0answers
28 views

export a variable DBUS_SESSION_BUS_ADDRESS

From my question: Use gnome-screensaver-command on python, I have searched that I need to run the following two codes: http://stackoverflow.com/a/10390963/1067791 sessionfile=`find ...
0
votes
0answers
30 views

How to retrieve environment variables programmatically after starting python-dbusmock

I would like to write a unittest in Python that verifies the correct sequencing of Upstart signals. To do this, I would love to use python-dbusmock so that I can create a fake DBUS for testing ...
0
votes
0answers
92 views

GDBus.Error:org.freedesktop.DBus.Error.NoReply when using GtkApplicationCommandLine

The following code shows a window when run. When a different instance is started, the existing window gets focus, (Gtk.Application provides uniqueness) but when the window is closed, the second ...
0
votes
0answers
68 views

How to detect CAN device insertion and removal in Linux using Python

I've been researching for a while on how to best detect an CAN-USB device being connected and disconnected from a Linux platform (Ubuntu 12.04), but it has been slow progress. The best advice I can ...
0
votes
0answers
29 views

DBus on demand object creation

So the DBus .service mechanism allows DBus to start a process if the requested service isn't running. I'm looking for something similar, but for objects. If I have Object_0 thru Object_9 available, ...
0
votes
0answers
34 views

PHP talk to NetworkManager via Dbus

I have setup NetworkManager, Dbus, Nginx web server, PHP and a Dbus PHP extension on my debian system. I am trying to „talk“ to NetworkManager via Dbus from my PHP web application. It works fine when ...
0
votes
0answers
139 views

Find and mount a USB drive with automount turned off

I have a USB device plugged into an Ubuntu 12.04 system. Automount is turned off, for various reasons. I'd like create a program to find and mount this device, preferably in the boot process. I ...
0
votes
0answers
53 views

How to get GetMachineId with DBus Java

I try to get org.freedesktop.DBus.Peer.GetMachineId() with Dbus with the java binding. At the moment, i can't see the GetMachineID() in the DBus.Peer Interface, but it exists on native API and other ...
0
votes
0answers
111 views

How to listen to only certain signals using python dbus

I have a main function that consists of this code: client_manager = Manager("client_manager") app_manager = Manager("app_manager") print("hi1") ...
0
votes
0answers
62 views

Python: several dbus methods under the same name. How to choose the right one?

Ok, this is probably simple but I'm stuck. There are several dbus methods under the same name. $ qdbus org.kde.kmail /KMail | grep openComposer method QDBusObjectPath ...
0
votes
0answers
45 views

How to make key-handler using dbus under linux/python

How to make key-handler using dbus under linux/python (special case hotkeys) ? It needs to get event which will be sent/captured to/by any program?
0
votes
0answers
97 views

DBUS Session TCP - Broken Pipe

Here's my problem. I have two different Red Hat 6. One in a Virtual Machine, and a physical one. Both are running 1.6.8 version of DBus and both use the same session.conf configuration file. A ...
0
votes
0answers
23 views

QVariantMap class

I use java and I need to use class QVariantMap. Objects of this class are returned by GetMetadata() dbus function. But I couldn't find out how to include this package (what package provides class ...
0
votes
0answers
44 views

dbus-python does not correctly recognize the signature

I have a python script that should connect to a dbus interface and receive some messages through signals. The signature of one of the items that it receives is: aa{qv} and even though it should ...

1 2 3