I wrote a persistent windows service in java that starts at boot. I also wrote a GUI monitor in java that loads the user. I would like to be able to connect multiple instances of the GUI monitor to a single server service and control it through an observer pattern. All logic has already been implemented, with the exception of the connection between different java processes.
Can anyone suggest me an api or technique that can make this possible? I can think of ways to achieve something like this using a registry poll at both ends and at the end, but is there a more direct way to do this?
Thanks.
source share