<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-15"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Michael 'Mickey' Lauer schrieb:
<blockquote cite="mid:1256131556.14897.44.camel@opal" type="cite">
  <pre wrap="">(NOTE: Please don't forget to cc the list)

  </pre>
  <blockquote type="cite">
    <pre wrap="">root@om-gta02 ~ # ./valadbusclient
Using **pending_return in dbus_connection_send_with_reply_setup() 
without pending_setup is deprecated and strongly discouraged
Error: Too many arguments in reply; expected 0, got 1
    </pre>
  </blockquote>
  <pre wrap=""><!---->
That's expected as the signature of your signal handler

private void discovery_started (dynamic DBus.Object bluez, string 
address_, string name_)

has been copied from the sample and not been adjusted.
org.freesmartphone.GSM.Device.SignalStrength( i ) has a different
signature, hence you would need to change it to
 
private void discovery_started (dynamic DBus.Object bluez, int
strength )

Hope this helps,

:M:
  </pre>
</blockquote>
Now it works, thank you!<br>
<br>
</body>
</html>