Is possible to move a EJB stateful component with its full internal state among EJB containers after they are deployed?
I.e. I want to creat a system with EJB components that move among different containers. But specification doesn't cover this. So the only way I see now is to create such transportation "manually". But I don't like the ided to invent the wheel.
Do you know some framework that support this. Or is there a simple way to do it for current EJB containers.
Same is possible in WebSphere cluster in failover scenarios. Stateful bean state is replicated to other cluster members. If primary server fails, client will be rerouted to the member containing replicated session and bean. If that is what you've been looking for. Some more details here Stateful session bean failover for the EJB container