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
()).endsWith("/"))
{
final String redirectUrl = servletRequest.getRequestURI() + "/";
servletResponse.sendRedirect(redirectUrl);
return;
}
so if the request url doesn't end with / it does a redirect with a /
what url do you send? And is it constantly redirecting there?
Then somehow websphere is removing the / again?
johan
On 5/24/07, Sean Sullivan <[EMAIL PROTECTED]> wrote:
Hello,
Is anybody using Wicket 1.3 beta 1 in a Websphere 6.x environment?
I am running Websphere 6.0.2.13 and I'm having some trouble with my
application. It appears that the WicketFilter
is calling sendRedirect repeatedly. I am unable to view any of the pages
in my application because the filter always
responds with a redirect code.
I'm open to any suggestions for how to debug this.
Sean
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user