Domanda

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.

È stato utile?

Soluzione

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?

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top