Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Horacio Natyural
Hi, we ofen get this error after performing back several times in an application. It happens occassionally, does wicket's page map store have a limitation on the number of times you can store the page? here's the code in our back button. we store the page id and version and use that to track

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Robert Dahlström
Not a complete reply but I think the default limit is 99 versions. This can be configured. Regards /Robert On 07/06/2011 08:44 AM, Horacio Natyural wrote: Hi, we ofen get this error after performing back several times in an application. It happens occassionally, does wicket's page map store

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Horacio Natyural
hi, how do we change the limit for this? THanks a lot 2011/7/6 Robert Dahlström robert.dahlst...@ongame.com: Not a complete reply but I think the default limit is 99 versions. This can be configured. Regards /Robert On 07/06/2011 08:44 AM, Horacio Natyural wrote: Hi, we ofen get this

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Martin Grigorov
Hi, On Wed, Jul 6, 2011 at 8:44 AM, Horacio Natyural horacio.natyu...@gmail.com wrote: Hi, we ofen get this error after performing back several times in an application. It happens occassionally, does wicket's page map store have a limitation on the number of times you can store the page?

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Horacio Natyural
yep, its because of this setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(), pageIDVersion.getVersion())); getPage().getPageMap().get(pageIDVersion.getId(), pageIDVersion.getVersion()) -- this returns a null page after some time. On Wed, Jul 6, 2011 at 2:53 PM, Martin Grigorov

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Martin Grigorov
See org.apache.wicket.settings.ISessionSettings On Wed, Jul 6, 2011 at 8:58 AM, Horacio Natyural horacio.natyu...@gmail.com wrote: yep, its because of this setResponsePage(getPage().getPageMap().get(pageIDVersion.getId(), pageIDVersion.getVersion()));

Re: Page Is Not Found In Page Map After Some Time.

2011-07-06 Thread Horacio Natyural
all i can see is set maxpagemaps which I think is different maybe in a different setting? i'm also trying to look for it. On Wed, Jul 6, 2011 at 3:06 PM, Martin Grigorov mgrigo...@apache.org wrote: See org.apache.wicket.settings.ISessionSettings On Wed, Jul 6, 2011 at 8:58 AM, Horacio Natyural