Here is how I am calling action class in login.jsp: <ht:form method="post" action="/login" focus="userName" >
Ray Stojonic
Ranch Hand
Joined: Aug 08, 2003
Posts: 326
posted
0
the action type attribute should be the fully qualified class name (ie: java.lang.String) not it's location in your webapp structure.
in fact, that goes for all type attributes in your struts-config
Aman Verma
Greenhorn
Joined: May 10, 2005
Posts: 15
posted
0
u should write the form bean entry as, <form-bean name="LoginBean" type="LoginForm"/> instead of <form-bean name="LoginBean" type="/WEB-INF/classes/LoginForm"/>