Re: QDBusError UnknownMethod for com.nokia.csd.Call service

2010-05-28 Thread Daniil Ivanov
Hi Roman! Sorry, my fault. It should be something like this QDBusConnection connSystemBus = QDBusConnection::systemBus(); QDBusInterface dbusPhone( "com.nokia.csd.Call", "/com/nokia/csd/call", "com.nokia.csd.Call", connSystemBus ); QDBusMessage reply = dbusPhone.call( "CreateWith", "+4312345678

RE: QDBusError UnknownMethod for com.nokia.csd.Call service

2010-05-28 Thread Felipe Crochik
This code works for me: QDBusMessage msg = QDBusMessage::createMethodCall( "com.nokia.csd.Call", // --dest "/com/nokia/csd/call", // destination object path "com.nokia.csd.Call", // message name (w/o method) "CreateWith" // method ); msg << phone_number;

Re: QDBusError UnknownMethod for com.nokia.csd.Call service

2010-05-28 Thread Daniil Ivanov
Hi Roman! Note that you seems to try to call it on system bus insteado of session bus. Thanks, Daniil. On Fri, May 28, 2010 at 3:07 PM, Roman Morawek wrote: > Hello, > > I am using the Nokia Qt Beta SDK and try to initiate a voice call on > Maemo/N900. Since there is no Qt API for this availa