Re: wicket 1.5.3 RequestCycleListener redirection migration problem

2012-01-24 Thread Martin Grigorov
Hi, See CryptoMapper and HttpsMapper classes and there usages in Wicket. These are examples of root request mapper pattern in Wicket. See https://cwiki.apache.org/confluence/display/WICKET/Request+mapping So you can create your own AgreementRequestMapper and register it as root mapper. In

Re: wicket 1.5.3 RequestCycleListener redirection migration problem

2012-01-23 Thread Martin Grigorov
Hi, On Fri, Jan 20, 2012 at 6:15 PM, Schnick nick.fea...@gmail.com wrote: Hello all, I am trying to migrate to wicket 1.5.3 but am having problems. I would like to redirect users to a particular wicket page at any given time in their visit. I have overridden RequestCycleListener's

Re: wicket 1.5.3 RequestCycleListener redirection migration problem

2012-01-23 Thread Schnick
Martin Grigorov-4 wrote Hi, On Fri, Jan 20, 2012 at 6:15 PM, Schnick lt;nick.featch@gt; wrote: Hello all, I am trying to migrate to wicket 1.5.3 but am having problems. I would like to redirect users to a particular wicket page at any given time in their visit. I have overridden

wicket 1.5.3 RequestCycleListener redirection migration problem

2012-01-20 Thread Schnick
Hello all, I am trying to migrate to wicket 1.5.3 but am having problems. I would like to redirect users to a particular wicket page at any given time in their visit. I have overridden RequestCycleListener's onBeginRequest method so that it sets the request cycles response page like so