On 1/20/06, Raghu Kanchustambham <[EMAIL PROTECTED]> wrote: > Let me repaste what I think might be relevant for you to take a look at it: > > DynaActionForm code: [ Note: This is extending DynaValidatorForm ] > ----------------------------------- > > public class StudentEnquiryDynaActionForm extends DynaValidatorForm > { > public ActionErrors validate(ActionMapping actionMapping, ServletRequest > servletRequest) > { > System.out.println("**********************************In the > validation!**********************"); > return errors; > } > > }
I think you need to override: public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { (Note HttpServletRequest request and not ServletRequest ) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]