Re: [appfuse-user] Struts validation

2010-12-19 Thread Dustin Pearce
That sounds a little nastier. The exact same validation message and exact same field name? Is the validation repeated in the action-validation and the model-valiation files? Multiple copies (honestly I don't think that works or if it did would fire twice, but who knows sometimes). What is th

Re: [appfuse-user] Struts validation

2010-12-19 Thread Ramzi MAALEJ
Thank you for your help ! I get it working now, it was a path problem. The only remaining problem is : the error message is displayed twice. is there any configuration to prevent that. thank you again ! On 2010-12-19 13:08, Dustin Pearce wrote: Barring some nasty syntax problem, it seems like

Re: [appfuse-user] Struts validation

2010-12-19 Thread Dustin Pearce
Barring some nasty syntax problem, it seems like the only things left are the path of your -validation.xml files and the validator type. The validator files should mirror your class package path. So in the case of your actions your -validation files should be in src/main/resources/com/xxx/weba

Re: [appfuse-user] Struts validation

2010-12-19 Thread Ramzi MAALEJ
Let's say name is a mandatory field. When I try to save a sport with empty name, validation is not firing and the exception I got is from DAO layer saying that name cannot be empty. Normally validation should be fired before going to DAO layer, and this is not working in my case. My actions are

Re: [appfuse-user] Struts validation

2010-12-19 Thread Dustin Pearce
Interesting. I think the error you are getting from the DAO layer would be helpful. When you say the validation is not working, is the validation you want not firing or an exception is being thrown by a DAO? Or an exception is thrown because your validations are not firing? What does your a

Re: [appfuse-user] Struts validation

2010-12-19 Thread Ramzi MAALEJ
I have two files generated by Appfuse Sport-validation.xml, I put it in model package and the second one SportAction-validation i put in webapp.action.sport package which using visitor validator. I'm testing validation by simply running the application using mvn:jetty run-war, I get errors from

Re: [appfuse-user] Struts validation

2010-12-18 Thread DUSTIN PEARCE
What validation files were created? For the model? What is there path location? If you just have model validation it will not work since you need to add a Visitor validator to the action that uses the model. Check to see if the action validation files are there. If they are post the pa

[appfuse-user] Struts validation

2010-12-18 Thread Ramzi MAALEJ
Hi all, I did create an application using Struts framework. I generated all the needed stuff for my pojo and deployed the application successfully but the validation is not working. The validation files are generated but it seems to be that they aren't used. I followed the tutorial that talk a

Re: [appfuse-user] struts validation - need to check atleast one field is entered

2009-02-16 Thread Matt Raible
I don't know how to do this off the top of my head. The following documentation may help though: http://struts.apache.org/2.x/docs/validation.html Matt On Tue, Feb 10, 2009 at 4:27 AM, ashan wrote: > > Hi, > > I'm trying to validate if 1 of 3 field value is entered on a form. If not > would li

[appfuse-user] struts validation - need to check atleast one field is entered

2009-02-10 Thread ashan
Hi, I'm trying to validate if 1 of 3 field value is entered on a form. If not would like to show one of those fields are required. How to configure validation.xml to do this? Thanks! -- View this message in context: http://www.nabble.com/struts-validation---need-to-check-atleast-one-field-i

Re: [appfuse-user] struts validation in appfuse-light-struts-hibernate-1.8.2

2008-08-19 Thread Marc Siramy
I use jetty:run like this (using eclipse remote debugging): mvnDebug.bat -X -e jetty:run -Dmaven.test.skip=true with -X to see Debug messages in console but I can't see these messages in that case - even if I can see Jetty Debug output in console for some other actions. I've also configured Jetty

Re: [appfuse-user] struts validation in appfuse-light-struts-hibernate-1.8.2

2008-08-18 Thread Matt Raible
How are you running your application? Are you creating a war and deploying to it or using jetty:run? If you use the latter, you should see the output in your console. Matt On Mon, Aug 18, 2008 at 4:17 AM, Marc Siramy <[EMAIL PROTECTED]> wrote: > After turning the validate from 'false' to 'true' i

[appfuse-user] struts validation in appfuse-light-struts-hibernate-1.8.2

2008-08-18 Thread Marc Siramy
After turning the validate from 'false' to 'true' in '/user' struts action , I obtain a blank page with following message when selecting 'Users' in the menu: "An Error has occurred in this application. Please check your log files for further information." But I can't see any log files for Jetty (on

Re: [appfuse-user] Struts validation rules

2007-05-10 Thread Matt Raible
This sounds like it may be a bug - can you reproduce it on the demo site? http://demo.appfuse.org/appfuse-struts Matt On 5/9/07, Michael Chen <[EMAIL PROTECTED]> wrote: Thanks to matt. I'm using 2.0M4 with Struts2 basic, and I do the steps to create a model object and action and related jsp p

Re: [appfuse-user] Struts validation rules

2007-05-09 Thread Michael Chen
Thanks to matt. I'm using 2.0M4 with Struts2 basic, and I do the steps to create a model object and action and related jsp pages, as show in the tutorial (something like the Person model, the PersonAction, and personList.jsp, personForm.jsp). Then I set a field of the model object to "required" in

Re: [appfuse-user] Struts validation rules

2007-05-09 Thread Matt Raible
Can you please tell us the steps we need to go through to reproduce this problem? Matt On 5/9/07, Michael Chen <[EMAIL PROTECTED]> wrote: I have the same issue, and i want know anyone can help me to fix it? Matt Stine wrote: > > Anyone had trouble w/ your validation rules not being cleared

Re: [appfuse-user] Struts validation rules

2007-05-09 Thread Michael Chen
I have the same issue, and i want know anyone can help me to fix it? Matt Stine wrote: > > Anyone had trouble w/ your validation rules not being cleared out w/ > each request in Struts 2? With each submit I end up getting a long list > of error messages above each field that only stops when I

[appfuse-user] Struts validation rules

2007-03-27 Thread Stine, Matt
Anyone had trouble w/ your validation rules not being cleared out w/ each request in Struts 2? With each submit I end up getting a long list of error messages above each field that only stops when I correct that field. However, at that point, even if I correct the entire form the previous errors s