RE: How can I get the unparsed URI from inside a servlet

2007-01-15 Thread happyharris . tomcatlist
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

Re: How can I get the unparsed URI from inside a servlet

2007-01-14 Thread Tim Funk
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.