Hi i am using wicket and getting page expire when ever two pages are open and I am trying to submit in on after the other is there a way to support getPageSettings().setAutomaticMultiWindowSupport(true) in wicket 6.8
Hi i am using wicket and getting page expire when ever two pages are open and I am trying to submit in on after the other is there a way to support getPageSettings().setAutomaticMultiWindowSupport(true) in wicket 6.8
You've to know how big your pages will get and how many sessions you've in parallel. I think your page size (serialized) is bigger than
maxSizePerSession
and because of that only last page is stored on disk.you can tweak your
IPageStore
settings a bit (but this will increase your resource usage):