DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28222>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28222

getRequestURL() in forwarded jsp/servlet doesn't return new url

           Summary: getRequestURL() in forwarded jsp/servlet doesn't return
                    new url
           Product: Tomcat 4
           Version: 4.1.30
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Servlet & JSP API
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


1.jsp:
<%getServletContext().getRequestDispatcher("/2.jsp").forward(request, 
response);%>
2.jsp:
<%out.print(request.getRequestURL());%>

The output of 2.jsp is "http://.../1.jsp"; but NOT "http://...2.jsp";. According 
to SRV8.4, "The path elements of the request object exposed to the target 
servlet must reflect the path used to obtain the RequestDispatcher." In this 
test case, "path used to obtain the RequestDispatcher" is "/2.jsp", so 
getRequestURL() in 2.jsp should return "http://...2.jsp";.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to