Ok, I've determined that I don't always lose my pathInfo.  It's only when i
try to map my servlet as the default servlet.

How do i do a getPathInfo() on my default servlet?  Here is the entry in my
web.xml file. what am i doing wrong?

When I use:
  <servlet-name>PrintPathInfo</servlet-name>
  <url-pattern>/</url-pattern>

URL: /testing/the/pathInfo
getPathInfo() returns null

when I use:
  <servlet-name>PrintPathInfo</servlet-name>
  <url-pattern>/path</url-pattern>

URL: /path/testing/the/pathInfo
getPathInfo() returns /testing/the/pathInfo

Thanks for your help.
-Lkb


Reply via email to