Hi,<br><br>I have been trying to change radio mode (to only use 2G/3G or both) via DBus as a part of shepherd, my gsoc project. It works wonders when I use dbus-send (taken from <a href="http://wiki.maemo.org/Phone_Control">wiki.maemo.org/Phone_Control</a>):<br>

<br>dbus-send --system --type=method_call --dest=<a href="http://com.nokia.phone.net">com.nokia.phone.net</a> /com/nokia/phone/net Phone.Net.set_selected_radio_access_technology byte:1<br><br>But when I try to implement the same method call in my program i get the error:<br>

<br>Error: <br>&quot;rpc.Error&quot; <br>&quot;can&#39;t find method Phone.Net::set_selected_radio_access_technology&quot; <br><br>The code I use looks like this:<br><br>#include &quot;cellular.h&quot;<br>#include &lt;QDBusConnection&gt;<br>

#include &lt;QDBusMessage&gt;<br>#include &lt;QDebug&gt;<br><br>Cellular::Cellular() : QObject() {<br>    QList&lt;QVariant&gt; radioModeArguments;<br>    radioModeArguments.append((unsigned char)1);<br><br>    QDBusMessage message = QDBusMessage::createMethodCall(&quot;<a href="http://com.nokia.phone.net">com.nokia.phone.net</a>&quot;, &quot;/com/nokia/phone/net&quot;, &quot;Phone.Net&quot;, &quot;set_selected_radio_access_technology&quot;);<br>

    message.setArguments(radioModeArguments);<br><br>    QDBusMessage result = QDBusConnection::systemBus().call(message, QDBus::Block);<br>    qDebug() &lt;&lt; &quot;Error:&quot;;<br>    qDebug() &lt;&lt; result.errorName();<br>

    qDebug() &lt;&lt; result.errorMessage();<br><br>    QList&lt;QVariant&gt; resultArguments = result.arguments();<br><br>    for (int i = 0; i &lt; resultArguments.size(); ++i) {<br>        qDebug() &lt;&lt; resultArguments[i];<br>

    }<br>}<br><br>I have attached all the relevant files (header, .pro, main).<br><br>I&#39;m completly lost to what the problem can be, do you have any ideas?<br><br>Best regards<br>Linus<br>