Re: Redirecting and getting the original URL

2004-10-07 Thread Jacob Weber
Craig, Thanks...I'll give that a try. Jacob In article <[EMAIL PROTECTED]>, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On a Servlet 2.4 container (such as Tomcat 5.x), the server will store > the "original" path-related information as a set of request attributes > with well known names: > >

Re: Redirecting and getting the original URL

2004-10-05 Thread Craig McClanahan
On a Servlet 2.4 container (such as Tomcat 5.x), the server will store the "original" path-related information as a set of request attributes with well known names: javax.servlet.forward.request_uri javax.servlet.forward.context_path javax.servlet.forward.servlet_path javax.servlet.forward

Redirecting and getting the original URL

2004-10-05 Thread Jacob Weber
Hello. In my Struts application, I have an action which forwards to a second action. The "redirect" parameter is set to false, so the browser's URL doesn't change. I'd like to get the original URL that the user requested (the one that's in his browser). But request.getServletPath() and the vari