Wendy, I know that the method is not executed, because I put a 'print' statement as the first line in the method. The 'print' statement does not appear initially in Tomcat. It does appear only after submitting the form. I also added a no-arg constructor for the action class. It is used only after a form has been submitted.
Wendy Smoak <[EMAIL PROTECTED]> wrote: From: "Eli Segev" > 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] --------------------------------- Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. Learn more.