Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-06-15 Thread Sean Sullivan
I was unable to get my Wicket 1.3 application to run in Websphere 6.0.2.13 After upgrading from Websphere 6.0.2.13 to Websphere 6.0.2.17, my Wicket 1.3application is running perfectly. Wicket 1.3 users should avoid Websphere 6.0.2.13... Sean On 5/24/07, Sean Sullivan <[EMAIL PROTECTED]> wrote

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Eelco Hillenius
Yep. Depending on your renderStrategy (which by default is REDIRECT_TO_BUFFER), Wicket issues redirects (HttpServletResponse#sendRedirect), which are typically (or always?) translated to 302s by the servlet container. Eelco On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: > > Question: > > Is

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
Question: Is Wicket setting the 302 response code for these HTTP requests? I am seeing the 302 status code in all responses. (302 == SC_MOVED_TEMPORARILY) Sean On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: Ok, I made the change to "home/" but I'm still having the same problem.

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
Ok, I made the change to "home/" but I'm still having the same problem. I am unable to visit the application homepage: http://dev.foobar.com/wicketdemo/home I've also tried http://dev.foobar.com/wicketdemo/home/ (trailing slash) but it yields the same result. I think that I am experiencing a

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Johan Compagner
make that home/ On 5/24/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: > I have an index.jsp file in the root of the WAR: > > > > > > On 5/24/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > > > > it seems that the home mount somehow does a redirect again to /home > > but then wicket again to /

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Sean Sullivan
I have an index.jsp file in the root of the WAR: On 5/24/07, Johan Compagner <[EMAIL PROTECTED]> wrote: it seems that the home mount somehow does a redirect again to /home but then wicket again to /home/ so the question is who does that /home ? On 5/24/07, Sean Sullivan <[EMAIL PROTECTE

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Johan Compagner
it seems that the home mount somehow does a redirect again to /home but then wicket again to /home/ so the question is who does that /home ? On 5/24/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: > Johan, > > My web context root is /wicketdemo and my application homepage is mounted as > "/home" > >

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Sean Sullivan
Johan, My web context root is /wicketdemo and my application homepage is mounted as "/home" Here's what I see when I access the site from the command line (wget): wget -S http://dev.foobar.com/wicketdemo --08:08:47-- http://dev.foobar.com/wicketdemo => `wicketdemo' Resolving dev.f

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-24 Thread Johan Compagner
WicketFilter does a redirect at the beginning: String relativePath = getRelativePath(servletRequest); // Special-case for home page - we redirect to add a trailing slash. if (relativePath.length() == 0 && !Strings.stripJSessionId(servletRequest.getRequestURI (