Re: Stateless Page Question

2012-04-27 Thread Jürgen Lind
Oh, sorry for the stupid question. Obviously, I haven't done raw servlet programming for a while... J. On 27.04.2012 09:50, Martin Grigorov wrote: From HttpServletRequest javadocs: HttpSession getSession() Returns the current session associated with this request, or if the request does not h

Re: Stateless Page Question

2012-04-27 Thread Martin Grigorov
>From HttpServletRequest javadocs: HttpSession getSession() Returns the current session associated with this request, or if the request does not have a session, creates one. Use getSession(false) instead. To keep the page stateless you may use wicket-devutils StatelessChecker in Dev mode. On Fr

Stateless Page Question

2012-04-27 Thread Jürgen Lind
Hi, I'm a bit confused with stateless pages and maybe somebody can shed light on this... I have a (currently) empty mounted WebPage that is later supposed to serve as a health-check page and will thus be called frequently. Now, if a do a simple wget with the page URL, my RequestCycleListener tel