From: "Eli Segev" <[EMAIL PROTECTED]>

> index.jsp redirect to 'submit', which is defined as a global forward as
'submit.do'.

If you're redirecting to submit.do, given the configuration you've posted,
SubmitAction should be executing.

What do you have in execute()?  Why do you think it _isn't_ executing?  The
thing is... typically, the execute method does whatever it needs to do, then
calls mapping.getInputForward().  If execute isn't executing, how are you
ever getting to your form?

Here's a guess:  in SubmitAction.execute(), you're putting things in the
request, then *redirecting* to your form.  If so, the browser will make a
new request for the redirect, and the things you put in the original one
will be lost.

I'd have to see SubmitAction.java and whether there is anything interesting
in the log files in order to offer any further guesses.

>  I can define it as 'submit.jsp', but there is no difference in behavior.

No, that's definitely not going to fix it.  Everything needs to go through
an action, which you seem to be doing.

-- 
Wendy Smoak


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

Reply via email to