You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
D-feet can list the interfaces, paths and methods that mowedline exposes, but trying to call any of the methods results in the application freezing for a few moments and eventually saying a timeout was reached. This goes for all the methods mowedline exposes.
I't not the method implementations because mowedline itself works fine of course and also using dbus-send works fine. For example, having started mowedline as:
Will correctly show "bar" in the mowedline window.
Looking at dbus-monitor, when calling any method, the org.freedesktop.DBus.Properties.GetAll method is called before the method I'm trying to execute. Mowedline doesn't implement this interface, nor can it because the dbus egg only supports the int32, double, boolean, array and string types (according to the docs), and the GetAll method returns a dict<string,variant>. The dbus egg also doesn't seem to support raising a dbus error, which I see some other services do.
The text was updated successfully, but these errors were encountered:
D-feet can list the interfaces, paths and methods that mowedline exposes, but trying to call any of the methods results in the application freezing for a few moments and eventually saying a timeout was reached. This goes for all the methods mowedline exposes.
I't not the method implementations because mowedline itself works fine of course and also using
dbus-send
works fine. For example, having started mowedline as:And calling
dbus-send
as:Will correctly show "bar" in the mowedline window.
Looking at
dbus-monitor
, when calling any method, theorg.freedesktop.DBus.Properties.GetAll
method is called before the method I'm trying to execute. Mowedline doesn't implement this interface, nor can it because the dbus egg only supports the int32, double, boolean, array and string types (according to the docs), and theGetAll
method returns a dict<string,variant>. The dbus egg also doesn't seem to support raising a dbus error, which I see some other services do.The text was updated successfully, but these errors were encountered: