Hi Fabio, On Tue, 12 Nov 2002 19:22, you wrote: > i tried to change the dtd file but nothing changes. > I'm sure that somebody has already solved the problem. > What i'll like to have is a clear example of how to configure tomcat.
I just noticed your servlet mapping: > >> <servlet-mapping> > >> <servlet-name>bugtrack</servlet-name> > >> <url-pattern>/*</url-pattern> > >> </servlet-mapping> Using "/*" is not a good idea as it means that your bugtrack servlet (Turbine) must handle all requests (including static html, images etc.). The Turbine servlet was not designed to do this. Tomcat's DefaultServlet usually does this job. On our site (http://www.kahootz.com) we use a url pattern of "/kz/*" for Turbine. Regards, -- Rodney -- To unsubscribe, e-mail: <mailto:turbine-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:turbine-user-help@;jakarta.apache.org>
