On Mon, November 1, 2004 2:14 pm, Gary S. Cuozzo said:
> Is there a way to make struts forward back to an action (instead of just
> the jsp page) when validation issues are detected?

The forward attribute of your action mappings can point to another action mapping.  
Would that do the trick for you?

> Or, another thing that would work for me is if I can have struts not
> call the form's validate method, but still be able to call it manually
> from within my action.

Yes, just set validate="false" in your mappings and call validate() on the form you 
have in execute() of your Action.  It's just another method, nothing special about it, 
just handle whatever ActionErrors it gives you back and you should be all set.

-- 
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to