How should I configure struts-config.xml in order to let ActionServlet call the 
reset() method?

It appers that my reset method is never called.....

    <form-bean  name="dateForm"
                  type="com.webCalendar.forms.dateForm"/>

    <action     path="/setDate"
                 type="com.webCalendar.actions.setDateAction"
                 name="dateForm"
                 scope="request"
                 input="/calendar.jsp"
                 validate="false"/>

Is something wrong with it?

Reply via email to