* http://struts.apache.org/2.x/docs/validation.html
It's under "Defining Validation Rules" at 2. The term "alias" is used to refer to the action method. So if there's an actions.Register.java class with "insert" and "update" action methods, then there might be XML docs like /java/actions/Register-insert-validations.xml /java/actions/Register-update-validations.xml One would only file for the insert method and the other only for the update method. The framework makes the association automatically, based on the naming convention, so there's nothing else to configure. In WebWork in Action, it's at page 353-354, under "Validation under different contexts". HTH, Ted <http://www.husted.com/ted/blog/> On 9/18/07, David Harland <[EMAIL PROTECTED]> wrote: > Can someone please point me to the documentation that shows you how to > configure validation per action method using the validation xml files? > Or is this not possible? > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Ted Husted > Sent: 18 September 2007 10:27 > To: Struts Users Mailing List > Cc: [EMAIL PROTECTED] > Subject: Re: S2 : Validation per Action method - ideas? > > I opened > > * https://issues.apache.org/struts/browse/WW-2191 > > for this, and noted the setting in the Validators documentation. > > Thanks for pointing this out, Veronica! > > -Ted. > > On 8/10/07, Veronica Iturrioz <[EMAIL PROTECTED]> wrote: > > You must to set the property validateAnnotatedMethodOnly=true, and the > validation occurs only for the correct methods. > > > > <interceptor-ref name="validation"> > > <param name="validateAnnotatedMethodOnly">true</param> > > <param name="excludeMethods">input,back,cancel,browse</param> > > </interceptor-ref> > > > > but this is ok for server validation, not for client validation. > > Anybody know how to resolve that for client validations? > > > > > > Veronica. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]