You need to know what struts is trying to do. I suggest configuring the
logging to "debug" - then you should find out where its trying to go to and
what the problem is.

If validation is being performed but failing then you should see something
like...
   DEBUG Validating input form properties
   DEBUG Validation failed, returning to '/manage_stake.jsp'

If validation either isn't being performed or no errors are found, then it
should tell you where its forwarding to, something like...
   DEBUG processForwardConfig(ForwardConfig[name=?????,path=????...])

Blank pages are usually when either you haven't configured things properly,
or somethings blowing up on the page. Either way the logs should tell you.

Niall

P.S. In your struts config, you have  a "failure" forward for the mapping
that doesn't look like a proper path - although the code you say your using
doesn't show it being used...

 <forward name="failure" path="error"/>



----- Original Message ----- 
From: "Daniel Watrous" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <user@struts.apache.org>
Sent: Monday, February 07, 2005 10:34 PM
Subject: Re: Trouble with DispatchAction and ValidatorActionForm


> Thank you for the suggestion.  I tried this and am still getting only a
> BLANK page with validate="true".  Are there any other ideas?
> DW
>
> ----- Original Message ----- 
> From: "Niall Pemberton" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <user@struts.apache.org>
> Sent: Monday, February 07, 2005 2:19 PM
> Subject: Re: Trouble with DispatchAction and ValidatorActionForm
>
>
> > Looks to me like your missing a "/" off your input parameter....
> >
> > --->     input="manage_stake.jsp">
> >
> > Niall
> >
> > P.S. don't forget to set validate back to "true".



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to