In our current generation web application we used session replication with tomcat clustering. (and a load balancer) That way, we received an auto failover when a client sends an ajax request to a tomcat node that failed.
In our next generation web application, We would like to have a similar behavior, only with websockets.
So my questions are :
1) Is it possible ?
2) Does it involve websocket-session replication? if so, are there any guides on how to do that?
websocket-session, is it the native websocket api session?, the JSR-356javax.websocket.Session?, or the HttpSession object? - Joakim Erdfeltjavax.websocket.Sessionreally cannot be replicated, right? Its equivalent tojava.net.Socketin meaning and purpose. - Joakim Erdfeltjavax.websocket.Session- there is no failover - Joakim Erdfelt