upgrade obexd to 0.47
[profile/ivi/obexd.git] / test / get-capabilities
index c835bd9..a06f2eb 100755 (executable)
@@ -4,17 +4,16 @@ import sys
 import dbus
 
 bus = dbus.SessionBus()
-client = dbus.Interface(bus.get_object("org.openobex.client", "/"),
-                                       "org.openobex.Client")
+client = dbus.Interface(bus.get_object("org.bluez.obex.client", "/"),
+                                       "org.bluez.obex.Client")
 
-if (len(sys.argv) < 2):
-       print "Usage: %s <device> [target]" % (sys.argv[0])
+if (len(sys.argv) < 3):
+       print "Usage: %s <device> <target>" % (sys.argv[0])
        sys.exit(1)
 
-if (len(sys.argv) == 3):
-       dict = {"Destination": sys.argv[1],
-               "Target": sys.argv[2]}
-else:
-       dict = {"Destination": sys.argv[1]}
+print "Creating Session"
+session_path = client.CreateSession(sys.argv[1], { "Target": sys.argv[2] })
+session = dbus.Interface(bus.get_object("org.bluez.obex.client", session_path),
+                                       "org.bluez.obex.Session")
 
-print client.GetCapabilities(dict)
+print session.GetCapabilities()