Re: Does wicket instantiate a page even if the session has expired?

2014-12-19 Thread Martin Grigorov
Hi, Yes, Wicket instantiates pages even when there is no bound session. Many applications need to run in stateless mode. Usually the applications use IAuthenticationStrategy to decide whether to allow the instantiation of a page (by type). The most common check is "if there is a session => allow,

Re: Does wicket instantiate a page even if the session has expired?

2014-12-19 Thread Ernesto Reinaldo Barreiro
bots running over your pages? On Fri, Dec 19, 2014 at 3:51 PM, Wayne W wrote: > > We have lots of really odd exceptions in our logs in production where > essentially the session is empty but pages are still being created. > > Does wicket do this? and if so how do we handle the situation knowing t

Does wicket instantiate a page even if the session has expired?

2014-12-19 Thread Wayne W
We have lots of really odd exceptions in our logs in production where essentially the session is empty but pages are still being created. Does wicket do this? and if so how do we handle the situation knowing that data in the session is needed to build the page thanks