Re: xml validation with indexed properties.

2017-08-02 Thread Christoph Nenning
> I'm using struts and got issue with their xml validation framework. I have > form with some indexed properties where element is just plain String. And I > need make validation for it. I tried to use indexedListProperty for this > case, but it doesn't work and as I read in 'Struts in Action' it

Re: XML Validation bug in examples and documentation

2013-11-12 Thread Antonio Sánchez
Fix reported in other thread: http://markmail.org/search/?q=Struts%202%20Examples%20Updated%20list%3Aorg.apache.struts.users%2F#query:Struts%202%20Examples%20Updated%20list%3Aorg.apache.struts.users%2F+page:1+mid:yrlc7rpnqrdyabjb+state:results El 08/11/2013 01:33 a.m., Lukasz Lenart escribió: Y

Re: XML Validation bug in examples and documentation

2013-11-07 Thread Lukasz Lenart
You mean in the source code of those apps? I have checked the source and looks ok. 2013/10/31 Antonio Sánchez : > "Preparable" and "exclude parameters" examples (at least) in: > > http://struts.apache.org/release/2.3.x/docs/getting-started.html > > > > should be > > > > Documentation: > > http:

Re: XML Validation bug in examples and documentation

2013-10-31 Thread Antonio Sánchez
Please remove link to annotations above from the list: http://struts.apache.org/development/2.x/xwork-core/apidocs/com/opensymphony/xwork2/validator/annotations/RegexFieldValidator.html El Jueves, 31 de Octubre de 2013 08:27:49 a.m., Antonio Sánchez escribió: "Preparable" and "exclude paramete

RE: XML Validation not working

2012-07-27 Thread Singh, Rajdeep
ave Newton [mailto:davelnew...@gmail.com] Sent: Friday, July 27, 2012 6:46 PM To: Struts Users Mailing List Subject: RE: XML Validation not working Why are you defining an explicit interceptor ref for the action? The validation interceptor is already in the default stack, and by explicitly defining

RE: XML Validation not working

2012-07-27 Thread Dave Newton
/Register.jsp > /LoginForm.jsp > > class="struts2.application.action.RegisterValidate"> > /success.jsp > > > > > Thanks, > > Rajdeep Singh > > -Original Message-

RE: XML Validation not working

2012-07-27 Thread Singh, Rajdeep
Form.jsp /success.jsp Thanks, Rajdeep Singh -Original Message- From: Łukasz Lenart [mailto:lukasz.len...@googlemail.com] Sent: Friday, July 27, 2012 5:55 PM To: Struts Users Mailing List Subject: Re: XML Validation not working Change dtd to: http://struts.ap

Re: XML Validation not working

2012-07-27 Thread Łukasz Lenart
Change dtd to: http://struts.apache.org/dtds/xwork-validator-1.0.2.dtd Regards -- Łukasz mobile +48 606 323 122 http://www.lenart.org.pl/ Warszawa JUG conference - Confitura http://confitura.pl/ 2012/7/27 Singh, Rajdeep : > Hi All, > > I have written classname-validation.xml as per tutorial gi

Re: XML Validation and slashes in action name

2011-06-24 Thread Markus Demetz
following post cleared my question: http://www.mail-archive.com/user@struts.apache.org/msg77238.html thanks. Am 24.06.2011 12:58, schrieb Markus Demetz: Hello, I have slashes in my Action names, e.g. ModelName/save What I want to do is to add validation only for the save action. As far as I

Re: XML Validation

2009-07-11 Thread Dave Newton
Muhammad Owais wrote: Dear All; I wnat to validate a String that is similare to "1,102,Y".I was trying to implement it, but it is not working. > > > field[0] > actionType1 >

RE: xml validation

2009-05-15 Thread Martin Gainty
i. > Date: Fri, 15 May 2009 06:03:40 -0500 > Subject: Re: xml validation > From: stanl...@gmail.com > To: user@struts.apache.org > > I use this successfully. > > > > > > credential.passwordRepeat.toUpperCase().equals(credential.pas

Re: xml validation

2009-05-15 Thread stanlick
I use this successfully. credential.passwordRepeat.toUpperCase().equals(credential.password.toUpperCase()) On Thu, May 14, 2009 at 2:11 PM, Dave Newton wrote: > manub wrote: > >> - I'm not able to perform an equality check on two p

Re: xml validation

2009-05-15 Thread manub
newton.dave wrote: > > > Include the complete field validation configuration, the interceptor > stack you're using, and the action configuration. > > Dave > > Hi Dave, I solved it. Thanks. Now I've got another question, still about validation. I'm trying to write a custom field validator

Re: xml validation

2009-05-14 Thread Dave Newton
manub wrote: - I'm not able to perform an equality check on two parameters. I've got password and confirmPassword which I try to validate using something like: confirmPassword.equals(password) ... What am