Re: Session serialization and clustering

2014-05-23 Thread Martin Grigorov
Hi, There is nothing to configure in Wicket. All you need is to make sure that your Wicket Session is bound (see Session#bind() method). This will create a Http Session and save Wicket's Session as attribute in it. Usually it is recommended to use normal member variable in Wicket Session instead

Session serialization and clustering

2014-05-22 Thread Niranjan Rao
Greetings, On wicket 1.5.10 and tomcat 7.0.39 as server. Right now my goal is to maintain the authenticated session when web application is reloaded for some reason as long as session expired. In other words, if we refresh the application, logged in users should not have to login again. I