Hi David, Its Apache/1.3.33 Server. But I am trying to run my struts app directly on 8080 port i.e. Tomcat. http://myhost.com:8080/test1.abc and the error message is clearly coming from Tomcat.
It says that "action" servlet is not available. But I think the struts.jar file is in the classpath as I am using <bean:messages .. > in one of the JSP and its able to read messages from MessageResources.properties file. What could be wrong? Uma -----Original Message----- From: David G. Friedman [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 10:42 AM To: Struts Users Mailing List Subject: RE: HTTP Status 404 - Servlet action is not available Uma Error 404 means "File Not Found" so the problem is likely a mapping issue between Apache and Tomcat. What Apache module are you using to pass JSP's to Tomcat? Regards, David -----Original Message----- From: Kalluru Uma. Maheswar [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 12:03 AM To: Struts Users Mailing List Subject: HTTP Status 404 - Servlet action is not available Hi, I get the following error in remote Tomcat server that is configured with Apache HTTP Server. The same app is working fine in my local machine that is having only Tomcat. Here is my web.xml file and struts-config.xml file <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> <init-param> <param-name>debug</param-name> <param-value>2</param-value> </init-param> <init-param> <param-name>detail</param-name> <param-value>2</param-value> </init-param> <load-on-startup>2</load-on-startup> </servlet> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.abc</url-pattern> </servlet-mapping> <action path = "/test1" type = "org.apache.struts.actions.ForwardAction" parameter = "/test/test1.jsp" validate = "false" > <forward name = "success" path = "/test/test1.jsp"/> </action> Where am I going wrong? Uma --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]