HTTP Status 500 - No action instance for path /register could be created
843836May 7 2005 — edited Apr 22 2008Hi ,
I'm trying to create a web application using struts,jsp,tomcat and i'm getting this error :
HTTP Status 500 - No action instance for path /register could be created
here's the struts-config file action mapping :
<action
path="/register"
type="com.evite.action.RegisterAction"
name="registerForm"
scope="request"
validate="true"
input="/pages/Register.jsp">
<forward name="registersuccess" path="/pages/Welcome.jsp"/>
<forward name="registerfailure" path="/pages/Register.jsp"/>
</action>
In the tomcat logs i found this log message :
INFO: validateJarFile(C:\dev\tomcat\webapps\Evite\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
when i searched from web for this error i found the suggestion to delete the servlet.jar ile from WEB-INF\lib ... removing it results in Build Failure.
Please help !
Thanks in advance !