So I am working an a large scale application. We are in the process of moving from an installed java application to a web based application. During the transition release(s) we need the ability to bring up certain screens on the locally installed (and presumed running) application. Is there an easy way to do this?

I've looked at custom URL handlers and some kind of messaging system, but neither of those seemed feasible for a large, dynamic number of clients.

有帮助吗?

解决方案

How about using JMS, having the java application subscribe to a topic. Then the server can fire off a message to the JMS topic, which is interpreted by the java app to open a particular screen?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top