As far as I understand it, all root mapping problems are solved when we use the servlet filter we have in 2.0 instead of the wicket servlet of pre-2.0. It's probably easy to back port, but the only problem is that it breaks the API in some places (like WebApplication.getWicketServlet will be replaced by alternatives). That means we can't put it in the 1.2 branch, but have to wait until we start working on 1.3 (and we won't do that until we feel we can EOL 1.2).
Eelco On 6/20/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: > Found it! > > The problem is: > > <!-- Does not work! --> > <servlet-mapping> > <servlet-name>wicket</servlet-name> > <url-pattern>/*</url-pattern> > </servlet-mapping> > > vs > > <!-- Does work fine! --> > <servlet-mapping> > <servlet-name>wicket</servlet-name> > <url-pattern>/foo/*</url-pattern> > </servlet-mapping> > > That took a while to figure out :-/ > > Eelco told me that this will be solved when the Listener is backported > to 1.2. I might take a stab at that today if I can find some time. > > S. > > On 6/19/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: > > I have a really odd problem here. I'm working on a simple application > > that is based on the authentication sample from > > wicket-auth-roles-examples. It works fine when I deploy in JBoss, but > > when I either start Jetty by hand from main() (like in the examples) > > or run it from the command line with mvn jetty6:run or jetty6:run-war > > it doesn't work. > > > > The thing that is happening is that I can submit the SignIn form but > > nothing happens. In my authenticate() I print the username/password > > but they are always empty strings. > > > > I was thinking of a class loader issue, but the apps works and code > > from both my side and the wicket side is loaded fine, otherwise it > > would not work at all I guess. > > > > Does anyone have an idea what is going on here? I would really prefer > > to just run my Wicket app from the IDE. > > > > S. > > > > > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
