When using FORM security, your logon page must post to j_security_check. If the logon fails, then you end up at the page specified in <form-errror-page>. From what I understand, if the logon is successful, you'll be sent to what ever page you initially requested. Correct?
If so, how do I override that behavior? Let's say after a logon I always want the user to go to mainmenu.jsp. <login-config> <auth-method>FORM</auth-method> <realm-name>Example Form-Based Authentication Area</realm-name> <form-login-config> <form-login-page>/jsp/security/protected/login.jsp</form-login-page> <form-error-page>/jsp/security/protected/error.jsp</form-error-page> </form-login-config> </login-config> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>