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