I am trying to modify the example remotecontrollercar, found in Qt sources, where a Car is controlled via D-Bus by a remote controller.
In my situation I have this middleware.xml file to define the interface I would like to create on D-Bus

Qt Code:
  1. <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
  2. "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
  3. <node name="/com/respa/webscanner/middleware">
  4. <interface name="com.respa.webscanner.MiddlewareInterface">
  5. <method name="destra"/>
  6. <method name="sinistra"/>
  7. <signal name="errore"/>
  8. </interface>
  9. </node>
To copy to clipboard, switch view to plain text mode 

Unfortunately when I compile my application I've never got on D-Bus session the interface with the name com.respa.webscanner.MiddlewareInterface
Since the executable file is called GuiWebScannerText, the interface that I see created on D-Bus is always local.GuiWebScannerTest.Middleware

The adaptor is properly generated but I cannot find where the interface name becomes local.Gui ... instead of com.respa.websc... like it should be.
Thank you in advance

Andrew
(Italy)