Yes and here's my action mapping
<action-mappings>
<action path="/login"
scope="request"
name="loginForm"
input="/jsp/index.jsp"
validate="true"
type="com.whatever.LoginAction">
<forward name="success" path="/jsp/myTickets.jsp"/>
<forward name="failure" path="/jsp/index.jsp"/>
</action>
<action path="/addNewTicket" scope="session" forward="/jsp/newTicketForm.jsp"/>
</action-mappings>
Anything that i have missed? I have read 3
Struts books and read it again and again but the configuration is so simple to do, but for unknown reason, i can't make it run. I just want to use the basic validation through XML.
There were no errors on startup.
Thanks in advance Javaranch People.
[ April 20, 2007: Message edited by: Erap Estrada ]