I've got a desktop EXE application and a GWT webapplication running on a Java appserver backend. How can I do things in the desktop app like click buttons which do something in the webapp? We can fire up a browser, but what about further interaction after that? If the user switches back to the desktop app and does something, can we get the browser back on top when we need it to?
They are both connected to the same backend application server, so communication via server could be possible for the other way around (webapp to desktop app).
Update
We are checking out an applet inside the web application: with some permissions set, it can communicate on the local user's network to talk to a wrapper for the existing desktop application. We'll see how that goes in terms of responsiveness.