Hi,
I need to implement a process where users punch in a few details into a web page, and have this information fired as some sort of an event to a Java rich client application (SWING) on the same host.
One idea was perhaps implementing an applet that would initiate socket communication with a listener implemented by the SWING application, but not sure whether this is possible at all.
This sort of puzzling piece of integration is basically a given fact. Essentially both the web application and the SWING one are already active and in use. The only missing bit is sharing info between the two, in a way that would be easy to implement. no matter how dirty.
Any ideas?
Thanks!