HttpServletRequest.getRequestURI() does not provide the unparsed URI.
1) It does not include the query string
2) You cannot tell if the URL has a question mark in it, if there is no query
string (e.g. http://foo/bar? And http://foo/bar look the same).
3) You cannot tell if the session ID came fro
What about HttpServletRequest.getRequestURI()?
-Tim
[EMAIL PROTECTED] wrote:
Is it possible to get the unparsed URI from inside the service method
of an HttpServlet? I am using tomcat 5.5.9.
I notice that the HttpServletRequest parameter to this method is
- implemented by org.apache.catalina.