Re: How to use new IPageStore

2019-04-22 Thread Maxim Solodovnik
Thanks a million Sven! On Tue, 23 Apr 2019 at 04:02, Sven Meier wrote: > > Hi Maxim, > > wicketstuff-datastore has examples for this, like: > > setPageManagerProvider(new DefaultPageManagerProvider(this) > { > @Override > protected IPageStore

Re: How to use new IPageStore

2019-04-22 Thread Sven Meier
Hi Maxim, wicketstuff-datastore has examples for this, like:     setPageManagerProvider(new DefaultPageManagerProvider(this)         {             @Override             protected IPageStore newPersistentStore()             {                 HazelcastInstance instance =

Re: HttpSessionDataStore in Wicket 9

2019-04-22 Thread Sven Meier
Hi Thomas, many thanks for testing so early! Set a custom provider of the page manager, see wicketstuff's gae-initializer as an example:     application.setPageManagerProvider(new GaePageManagerProvider(application, maxPages));

Untouching pages in Wicket 9

2019-04-22 Thread Thomas Heigl
Hi all, What is the equivalent of the following line in Wicket 9? Session.get().getPageManager().untouch(content.getPage()) There is only `removePage` now, but it doesn't do the same thing as far as I can see. Is it still possible to untouch pages in ajax requests so they won't be serialized

HttpSessionDataStore in Wicket 9

2019-04-22 Thread Thomas Heigl
Hi all, I just experimentally upgraded my application to 9.0.0-M1. Most things are straight forward, but I'm struggling with replicating my current page manager configuration using the new API. My current configuration for Wicket 8 looks like this: setPageManagerProvider(new

How to use new IPageStore

2019-04-22 Thread Maxim Solodovnik
Hello Sven, I'm trying to migrate OpenMeetings code to wicket9 The migration was easy, moving to junit5 was doable All tests are green BUT real application throws Exceptions :( I'm setting Hazelcast as follows: [1] I have checked the code And found no way to pass SerializedPage to