Getting a GWT application to communicate with a local client process
The main lead I was thinking of, and I don't know if it's applicable, is to have the other client process mimick (in some way which I need to think of) a server and then have the appli开发者_StackOverflow社区cation talk with it, via XML/JSONP, while the process talks with the server in some way (not important for now).
If this does not make sense please ask and I'll try to clarify.
I'd appreciate any suggestions, IttaiYou (probably) can't communicate in a cross-platform (and cross-browser) way from a web client to a local process, in any other way than you could with a web service.
In other words, I think your main idea is the way to go - set up a local HTTP server that will serve the client, and then have that process also communicate with whatever remote services you may need. Perhaps you can find a lightweight Java-based HTTP server that can run your local process with GWT-RPC code inside it to minimize the changes to your current code.
精彩评论