문제

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