Hello. I have written a persistent windows service in java that runs on boot. I have also written a GUI monitor in java that loads on user login. I would like to be able to have multiple instances of the GUI monitor connect to and control the single backend service via the observer pattern. All of the logic is already implemented with the exception of the connection between the different java processes.
Can anyone suggest to me an api or technique that can make this possible? I can think of ways to accomplish something similar using registry polling in both front end and back end, but is there a more direct way to do this?
Thanks.