Re: validate() in ActionForm still uses ActionErrors in 1.2.1

2004-08-20 Thread Niall Pemberton
ActionError is deprecated but ActionErrors is not. Replace ActionError with ActionMessage but leave ActionErrors as they are. Niall - Original Message - From: Alex Lui [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 20, 2004 6:08 AM Subject: validate() in ActionForm still

validate() in ActionForm still uses ActionErrors in 1.2.1

2004-08-19 Thread Alex Lui
Hi, I am migrating my Struts application from 1.1 to 1.2.1. I try to use ActionMessage(s) instead of deprecated ActionError(s). However, the validate() method in ValidatorForm still uses ActionErrors and in some cases, I extend ValidatorForm to write my customized validate() method. How do I deal