David M.

Results 17 comments of David M.

Is there any sort of log produced by dbus-java? Usually dbus-java uses Slf4j with any slf4j compliant logger to log what's going on. Especially turning on TRACE-logging would definitely help...

Are you sure you are xdg-dbus-proxy the correct way? Just using --filter will cause xdg-dbus-proxy to block all communication except for the initial handshaking to DBus. [See here](https://manpages.ubuntu.com/manpages/impish/man1/xdg-dbus-proxy.1.html). When using...

This has to do with the exception handling of the calling code. When DBus is not available dbus-java will instantly fail with an `AddressResolvingException` or an `IOException`. When the calling...

I think this is the way it can be done. As stated previously, you are pretty out of luck trying to create a proper DBus signature when generics come into...

I've looked at this case and I agree that something is missing here. I first investigated what you mentioned about `PropRefRemoteHandler`. When the method `handleDBusBoundProperty` is used it is assumed...

I did some more work on this stuff. I found that there are some combinations of implementing `Properties` and using `@DBusBoundProperty` annotation which will not work or will not produce...

Sorry no idea. I don't use spring in any project so I'm not familiar it (and I don't like to have black magic in my projects). In Java terms `a{sv}`...