How can I have two ways communication with WS. Two ways means a client could be a server and a server could be a client. As far as I understand the problem related to the client-server model in HTTP which is used by WS. What is the best practice for this scenario when a server wants send an event to multiple clients without being polled. ? As far as I know there are some solutions but I do not know which one is best 1) server-push techniques (websockets) 2) SOAP over JMS (this sounds great) 3) WS-eventing
Thanks