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