You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Annie Guo <ag...@appriss.com> on 2004/06/02 16:22:43 UTC

Form Authetication

I am trying to hook up JaasRealm.  When I enter username and password, my
LoginModule authenticates it ok from my debug statements.  But every time,
my page is forwarded to loginError.html instead of index.html that I want.
Below is what I have put in web.xml.  Would anyone please help let me know
what I have done wrong?

Thanks a lot.

 
   <security-constraint>
        <web-resource-collection>
            <web-resource-name>Entire Application</web-resource-name>
            <url-pattern>/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>tomcat</role-name>
        </auth-constraint>
    </security-constraint>
    <login-config>
        <auth-method>FORM</auth-method>
        <form-login-config>
            <form-login-page>/loginJaas.jsp</form-login-page>
            <form-error-page>/loginError.html</form-error-page>
        </form-login-config>
    </login-config>

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org