DBus-Server in Java?

Is there a server implementation of DBus for Java? There's a lib for clients and services (not servers).


Asked by: Charlie195 | Posted: 21-01-2022






Answer 1

It seems like since you originally asked your question, the library has gained support for what you ask for, at least the DBusDaemon source contains a DBusServer class.

Answered by: Owen547 | Posted: 22-02-2022



Answer 2

I'm not following why it would be necessary to have a language specific implementation of the server. I don't get the impression that more then one instance of DBus is intended to run in parallel on a server, so whichever events you public/subscribe to is all client side. If it's all client side that's all in java, and that's all you need to interact with. Nothing should be calling directly into the server code, so why would you need a java implementation of the server?

Answered by: Melissa904 | Posted: 22-02-2022



Similar questions





Still can't find your answer? Check out these amazing Java communities for help...



Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)



top