RE: [OS-webwork] Validation Framework doubt

2003-09-02 Thread Jason Carreira
I got it, but haven't had time to look yet. I'll take a look tonight. > -Original Message- > From: Samuel Mota [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 02, 2003 10:23 AM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] Validation Framework dou

RE: [OS-webwork] Validation Framework doubt

2003-09-02 Thread Samuel Mota
MAIL PROTECTED] [EMAIL PROTECTED]cc: ceforge.net Subject: RE: [OS-webwork] Validation

RE: [OS-webwork] Validation Framework doubt

2003-09-01 Thread Jason Carreira
the getter and the param type in the setter are the same, or the Java introspector code can get confused. > -Original Message- > From: Samuel Mota [mailto:[EMAIL PROTECTED] > Sent: Monday, September 01, 2003 9:08 AM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] V

RE: [OS-webwork] Validation Framework doubt

2003-09-01 Thread Samuel Mota
Hi, Continuing my doubts about this topic ... I'm debugging my form to see WHY even if I post some content at my validated fields (using the XWork validation framework and the interceptor) I get error messages. The field types are corret at the validation.xml file (ranges and so on) ... names

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread roughley
or it or add it to this one. In general, I was > > planning > > > on doing validations using the validation framework and > > anything else > > > would be done in the execute() method. What do others think? > > > > &

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Jason Carreira
ED] > Subject: RE: [OS-webwork] Validation Framework doubt > > > I personally like the fact that most actions do not have to > deal with UI validations, and that it is nicely seperated. I > think the grey area is when you may be required to do > business validations for UI fi

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Jason Carreira
See below > -Original Message- > From: Samuel Mota [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 28, 2003 2:18 PM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] Validation Framework doubt > > > > Hi Jason, guys, > > Now the interceptor is

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Samuel Mota
ceforge.net

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread roughley
rom: Pat Lightbody [mailto:[EMAIL PROTECTED] > > Sent: Thursday, August 28, 2003 11:24 AM > > To: [EMAIL PROTECTED] > > Subject: Re: [OS-webwork] Validation Framework doubt > > > > > > Jason, > > One request --

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Jason Carreira
ect: Re: [OS-webwork] Validation Framework doubt > > > Jason, > One request -- when you move the logic in to an > interceptor... can you use a Lifecycle interface rather than > reflection? > > -Pat > > --- This

Re: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Pat Lightbody
o see this change and doExecute() go away. > -Original Message- > From: Samuel Mota [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 28, 2003 9:10 AM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] Validation Framework doubt > > > > Hi, > > &g

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Jason Carreira
> -Original Message- > From: Samuel Mota [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 28, 2003 9:10 AM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] Validation Framework doubt > > > > Hi, > > >map of fieldErrors. It

RE: [OS-webwork] Validation Framework doubt

2003-08-28 Thread Samuel Mota
Hi, >map of fieldErrors. It WILL NOT stop execution just because you have an error. You >can apply the >DefaultWorkflowInterceptor after the validation to have it automatically return >"input" if you have any errors >applied to your Action. Otherwise, you can decide how to deal with them in yo

Re: [OS-webwork] Validation Framework doubt

2003-08-27 Thread Francisco Hernandez
at the top of my execute() method I just check ActionSupport.hasErrors() INPUT if its got errors. but now that Jason mentioned the DefaultWorkFlowInterceptor I think I will use that instead, man theres so many things I still don't know exist in WW2. Samuel Mota wrote: Hi, I'm using the XWork

RE: [OS-webwork] Validation Framework doubt

2003-08-27 Thread Jason Carreira
TECTED] > Sent: Wednesday, August 27, 2003 4:14 PM > To: [EMAIL PROTECTED] > Subject: [OS-webwork] Validation Framework doubt > > > Hi, > > I'm using the XWork validation framework but I'm in doubt > about how to use it's results. > > The wiki says &q

[OS-webwork] Validation Framework doubt

2003-08-27 Thread Samuel Mota
Hi, I'm using the XWork validation framework but I'm in doubt about how to use it's results. The wiki says " Bear in mind that even if errors are added due to failed validation, the action will still be executed." So I must add the errors to the stack on my own doValidation() method? Seems