Comment #11 on issue 522 by [email protected]: Servlet forwards from
servlets with pathinfo mishandled
http://code.google.com/p/google-guice/issues/detail?id=522
FYI, here is a horrible hack that worked around this unpleasant issue in my
environment, with Guice-2.0 stable:
try
{
Field pc = request.getClass().getDeclaredField("pathComputed");
pc.setAccessible(true);
pc.set( request, false );
pc = request.getClass().getDeclaredField("pathInfoComputed");
pc.setAccessible(true);
pc.set( request, false );
}
catch (NoSuchFieldException e)
{}
catch (IllegalAccessException e)
{}
--
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.