Hi all :) My form submits to a controller jsp which uses a bean to check validation. If info is validated, the controller forwards to a verify page, else forward to a retry page with appropriate error messages. After some tweaking this all worked perfectly.
After realizing that the first JSP I called (i.e. FormValidate.jsp) shows in the URL even after control is forwarded to another jsp, I wanted to change the name of the file. I changed FormValidate.jsp to CCProcess.jsp, and changed all the appropriate action tags to call CCProcess.jsp. Now I can't get to Verify.jsp. Even when all info on form is correct it is still calling Retry.jsp and I get stuck in a never ending loop in Retry.jsp - even though there are no error messages... Could changing the file name be the cause of this? Its as thought the if (formBean.validate) always fails... but I don't think the problem is my bean, as I mentioned it worked perfectly before... Thanks. Denise -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
