Re: validation.xml and validate() method

2003-11-24 Thread Sergey Smirnov
Your form-bean should expand org.apacher.struts.validator.ValidatorForm, not just ActionForm, and your validate() should call validate() from super class (ValidatorForm) to have validation.xml involved. "Honza Spurný" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there, > > as

Re: validation.xml and validate() method

2003-11-24 Thread Dirk Markert
Hello Sporak, call super.validate(). *** HS> Hi there, HS> as I can see, when I implement the validate() method in the ActionForm, it HS> means, that validation throught validation.xml file (inner struts HS> validation) stops to wor

validation.xml and validate() method

2003-11-24 Thread Honza Spurný
Hi there, as I can see, when I implement the validate() method in the ActionForm, it means, that validation throught validation.xml file (inner struts validation) stops to work. ??? Am I right ??? This seems to me so... Am I doing something wrong? How can I walk throught both validation? If it i