0 Replies Latest reply on Feb 25, 2005 2:18 PM by ionel

    How to force forward on j_security_check validation ?

      Hi,

      Using form login in web.xml and j_security_check

      <login-config>
      <auth-method>FORM</auth-method>
      <realm-name>securedZone</realm-name>
      <form-login-config>
      <form-login-page>/login.do</form-login-page>
      <form-error-page>/index.do</form-error-page>
      </form-login-config>
      </login-config>
      

      displays the /login.do URL when a user attemps to login on a secured zone and forward to /index.do if login fails.

      Question :
      - How to force forward to /userhome.do when login success instead of displaying the requested page that started the logon process ?