Link to home
Start Free TrialLog in
Avatar of dolphin_g
dolphin_g

asked on

Server to Client Callback

I would like to know if this scenario is possible. Where in a server can invoke a particular class in client to update its state information.
I have a standalone application that invokes EJB3 stateless session beans on the server.
Avatar of a_b
a_b

Do you want to update the client state or the server state?
Avatar of dolphin_g

ASKER

the client state.....
I think the best that can be done would be to implement messaging systems(JMS) b/w the client and the server. That is the closest that I have been able to come to pulling information from the client.You can have a onMessage() on the client where when the server asks for info , the client sends it across.
You mean try to push the message from server to JMS, and the JMS delivers it to Client by Message Listeners.....
ASKER CERTIFIED SOLUTION
Avatar of a_b
a_b

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi dolphin_g,

Would appreciate some feedback from you, on how you handled the problem?