Okay, I just figured out, how to use the "FORM" auth-method mechanism (I
realized that the webapps/examples directory supplies good examples and
furthermore Servlet-Specification chapter 11 describes that stuff)
Does tomcat 3.2 support digest and client-cert aut-method?
-----Urspr�ngliche Nachricht-----
Von: Kurt, Oliver [mailto:[EMAIL PROTECTED]]
Gesendet: Dienstag, 19. Dezember 2000 08:56
An: '[EMAIL PROTECTED]'
Betreff: JDBC Realm documentation
So lets move on....
Finally I got the <auth-method>BASIC</auth-method> working.
Now I want to evaluate other aut-methods. I red in the web.dtd that BASIC,
FORM, DIGEST and CLIENT-CERT are legal values for the auth-method.
QUESTION 1.)
Where can I read something about that stuff, for example which java-files
are involved? And where can I get additional infos?
QUESTION 2.)
Another question to the FORM aut-methods:
The following scheme shows a part of my web.xml file:
<login-config>
<auth-method>FORM</auth-method>
<realm-name>Example</realm-name>
<form-login-config>
<form-login-page>/login/login.jsp</form-login-page>
<form-error-page>/login/error.jsp</form-error-page>
</form-login-config>
</login-config>
Propably the login.jsp has to have some special <form> and <input> tags,
where can I see such a login.jsp respectively where can I find the scheme
for <form-login-page>?
Thanks,
Oliver Kurt