5

Qt Creator で Qt Dbus を使用して、アプリケーションのメソッドをシステム バスに公開したいと考えています。セッションバスの使用中にメソッドが公開されますが、システムバスでは、登録したサービス名しか表示されず、その下に公開されるメソッドはありません.(私はDフィートで確認しています)どうすればよいですか? ?

4

1 に答える 1

2

You have to place your config file (e.g: example-dbus.conf) in /etc/dbus-1/system.d/

The example-dbus.conf file looks like:

<!DOCTYPE busconfig PUBLIC
 "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">

<busconfig>
  <!-- Only root user can own the service -->
  <policy user="root">
    <allow own="com.company.qtdbus"/>
  </policy>

  <!-- Allow anyone to invoke methods on server, except SetHostName -->
  <policy context="default">
    <allow send_destination="com.company.qtdbus"/>
    <allow receive_sender="com.company.qtdbus"/>

    <deny send_destination="com.company.qtdbus"
          send_interface="com.company.qtdbus.Server" send_member="SetHostName"/>
  </policy>

  <!-- Allow everything, including access to SetHostName -->
  <policy user="root">
    <allow send_destination="com.company.qtdbus"/>
    <allow receive_sender="com.company.qtdbus"/>
  </policy>
</busconfig>

Restart the dbus daemon with /etc/init.d/d-bus restart and now you should be allowed to connect to the system bus. In fact, if you not allowed to connect to the system bus, a error message will be shown.

于 2013-10-02T10:37:17.433 に答える