Hi Johan, On Mon, 14 Sep 2009 17:18:16 +0300, Johan Hedberg <johan.hedberg-Re5JQEeQqe8AvxtiuMwx3w@xxxxxxxxxxxxxxxx> writes: > declared as part of the XML. Could you still do the following please: Thank you for all of your advise, here is the result. BR, Gergely >From 91b64b5cd3b174317bde5f9ccf4cc1d420086eb7 Mon Sep 17 00:00:00 2001 From: Gergely Risko <gergely@xxxxxxxx> Date: Mon, 14 Sep 2009 17:46:29 +0300 Subject: [PATCH] Add introspection interface description into the DBus introspection replies. --- gdbus/object.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/gdbus/object.c b/gdbus/object.c index 3186921..811c2e1 100644 --- a/gdbus/object.c +++ b/gdbus/object.c @@ -155,7 +155,13 @@ static void generate_introspection_xml(DBusConnection *conn, gstr = g_string_new(DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE); - g_string_append_printf(gstr, "<node name=\"%s\">\n", path); + g_string_append_printf(gstr, + "<node name=\"%s\">\n" + "\t<interface name=\"org.freedesktop.DBus.Introspectable\">\n" + "\t\t<method name=\"Introspect\">\n" + "\t\t\t<arg name=\"xml_data\" type=\"s\" direction=\"out\"/>\n" + "\t\t</method>\n" + "\t</interface>\n", path); for (list = data->interfaces; list; list = list->next) { struct interface_data *iface = list->data; -- 1.6.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html