Comment #2 on issue 599 by jeff.ichnowski: invalid pathinfo computation in ServletDefinition
http://code.google.com/p/google-guice/issues/detail?id=599

I can confirm that this issue is present in Tomcat 7 as well. The issue is arising in my case when I use HttpServletResponse.encodeRedirecURL(...) for a redirect. The servlet container appends ";jsessionid=..." to the path when cookies are disabled. I have:

serve("/home").with(HomeServlet.class);

And similarly:

"/home" returns HTTP status 200
"/home;jsessionid=..." returns HTTP status 404

When I log the request information in a filter on "/*", I get:

pathInf=null, requestURI=/myapp/home;jsessionid=0F68C5757FC82AE5CAD909594A628839, servletPath=/home, contextPath=/myapp


--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-guice-dev?hl=en.

Reply via email to