I've just written my first servlet. I have no problems access it through Tomcat via port 8080, but can't via Apache and mod_jk. I have no problems with JSPs, but receive a 404 error when i try to access the servlet through Apache. I'm using Tomcat 4.1.12 and Apache 2.0.42, if that is needed.
The error message: HTTP Status 404 - /servlet/FlashMenu >From my Apache http.conf ( inside Virutal Host ): JkMount /*.jsp jkw JkMount /servlet/* jkw >From my web.xml: <web-app> <servlet> <servlet-name>FlashMenuServlet</servlet-name> <servlet-class>FlashMenuServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>FlashMenuServlet</servlet-name> <url-pattern>/servlet/FlashMenu</url-pattern> </servlet-mapping> What am I missing in my config or what should I look for? -- John Walstra [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>