[...] > And here's my mapping setup from web.xml: > > <servlet> > <servlet-name>MyServlet</servlet-name> > <servlet-class>MyServlet</servlet-class> > </servlet> > <servlet-mapping> > <servlet-name>MyServlet</servlet-name> > <url-pattern>/main</url-pattern> > </servlet-mapping> replace url-pattern element with this: <url-pattern>/main/*</url-pattern> ..but this will cause *every* request to be redirected to MyServlet. -- Jacek Prucia 7bulls.com S.A.
- PathInfo problem with tomcat 3.2.1 Harri Varpanen
- RE: PathInfo problem with tomcat 3.2.1 Rupert Jones
- Re: PathInfo problem with tomcat 3.2.1 Jacek Prucia
- Re: PathInfo problem with tomcat 3.2.1 Harri Varpanen
