dbus - Allow introspection on my D-Bus system service -


after having spend bit time on understanding how d-bus session , system buses working, i'm focusing on allowing people use , introspect service in order allow implement features using service.

i have wrote following configuration file placed in /etc/dbus-1/system.d/:

 <!doctype busconfig public "-//freedesktop//dtd d-bus bus configuration 1.0//en"      "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">  <busconfig>   <policy user="root">     <allow own="org.zedroot.test" />     <allow send_destination="org.zedroot.test" />   </policy>   <policy context="default">     <allow send_destination="org.zedroot.test"            send_interface="org.zedroot.test" />     <allow send_destination="org.zedroot.test"            send_interface="org.freedesktop.dbus.introspectable" />     <allow send_destination="org.zedroot.test"            send_interface="org.freedesktop.dbus.properties" />   </policy> </busconfig> 

but using d-feet can see service not introspect (i don't see inside service: no methods, signals or properties).

could please me ?

after reboot of computer it's working.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -