You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by David Wall <dw...@myEastside.com> on 2001/04/19 02:12:24 UTC

JSPs with extra path info?

I'm trying to get Tomcat 3.2.2b2 to handle a URL of the format:

http://www.myeastside.com/app/GA.jsp/Test+word.doc?m=1&a=2

The idea is that I expect this to run my JSP called /app/GA.jsp.  It should
have some extra path string of "Test+word.doc" and two parameters that I can
retrieve named "m" and "a".

But when I run it, tomcat's JspEngine keeps bringing up my notfound page.

I run Tomcat with Apache 1.3.19 and mod_jk.so using the AJP13 connector.  I
have mounts like:

JkMount /app/*.jsp ajp13
JkMount /app/servlet/* ajp13

and I even added this just in case...
JkMount /app/*.jsp/* ajp13

I believe it's getting through Apache to TC okay since the jasper log shows:
2001-04-18 05:12:08 - JspEngine --> /notFound.jsp
2001-04-18 05:12:08 -        ServletPath: /notFound.jsp
2001-04-18 05:12:08 -           PathInfo: null

And it is bringing up my not found page.  The GA.jsp file is present in the
right area though, right along with my other jsps.

Thanks,
David