views:

177

answers:

1

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

+1  A: 

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?

dgtized