I don't know if you can do exactly what you want but an alternative could
be to url-encode the path in the request as a variable

for example: http://server/application/mypage.jsp?path
=%2fextra%2fpath%2finfo
(I think %2f = / but please check!)

Brendan

-------------------------------------------------


In web.xml I have added a servlet mapping so that the servlet can take
extra
path information as follows:

<servlet-mapping>
        <servlet-name>myservlet</servlet-name>
        <url-pattern>/myservlet/*</url-pattern>
</servlet-mapping>

Is it possible to do something similar with JSPs - and if so how and where
do I configure this?
I would like to be able to use a URL such as
http://server/application/mypage.jsp/extra/path/info

Thanks,
Catharine


--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to