Yes, that would be the reason. From the corresponding section of the spec for servlet 2.2:
If the location of the error handler is a servlet or a JSP, the following request attributes can be set: . javax.servlet.error.status_code . javax.servlet.error.exception_type . javax.servlet.error.message So you'd need tomcat 4 and above for javax.servlet.error.request_uri > -----Original Message----- > From: Dola Woolfe [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 01, 2004 3:28 AM > To: [EMAIL PROTECTED] > Subject: Re: ErrorPage.jsp - how to get the address of the > offending page? > > > > > Does the request attribute > > javax.servlet.error.request_uri suit your needs ? > > (from the servlet spec, SRV.9.9.1) > > Actually returns null. I'm using Tomcat 3; Could that > be the reason? > > Here's my snippet: > > <%@ page isErrorPage="true"%> > <% > System.out.println(request.getAttribute("javax.servlet.error.r > equest_uri")); > > %> > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
