If you have apache and tomcat set up on the linux box, your problem could be related to how tomcat is configured to run with apache.
Often tomcat and apache are set up so that servlets are required to live under the "/servlet" URL-mapping at your server, therefor try this in your web.xml-file: <servlet-mapping><servlet-name>action</servlet-name><url-pattern>/servlet/do/*</url-pattern></servlet-mapping> instead of <servlet-mapping><servlet-name>action</servlet-name><url-pattern>/do/*</url-pattern></servlet-mapping> or, if you really prefer *.do, try (in the <url-pattern>-tag) /servlet/*.do rather than *.do! // markus skyttner -----Original Message----- From: Struts Newsgroup (@Basebeans.com) [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 11:25 To: [EMAIL PROTECTED] Subject: servlet-mapping not available Subject: servlet-mapping not available From: "Sebastian Teister" <[EMAIL PROTECTED]> === Hi! after developing a web-app locally I tried to get it run on our linux server. Unfortunately the servlet-mapping (*.do) seems to be unknown to the server, so it comments the mapping home.do as unknown (requested url not found). web.xml and struts-config seem to be valid. We already have a web-app running on our server that is an organizer we have bought. maybe i should handle this fact properly - as far as i know, tomcat's server.xml seems to be valid, too. Direct requests to jsps work. All classes and the struts are working. I'm using struts with tomcat 3.2.1 and apache. Any idea what the matter is? Please help. Sebastian -- 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]>

