Check the Java Servlet Spec API. v2.2 says:
When a servlet is being used from within an include, it is sometimes
necessary for that servlet to know the path by which it was invoked and not
the original request paths. The following request attributes are set:
javax.servlet.include.request_uri
javax.servlet.include.context_path
javax.servlet.include.servlet_path
javax.servlet.include.path_info
javax.servlet.include.query_string
-- Stoehr
-----Original Message-----
From: Jonathan Asbell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 21, 2001 12:20 AM
To: [EMAIL PROTECTED]
Subject: javax.servlet.include.path_info ????
In the ActionServlet...
javax.servlet.include.path_info
Anyone know what this is or where it comes from?
// For prefix matching, we want to match on the path info (if any)
path =(String) request.getAttribute("javax.servlet.include.path_info");