Hi,

I'm using Tomcat 4.1.18, Apache 1.3.27 and mod_jk as the connector. I want
to implement DIGEST authentication on tomcat. I implemented already the
BASIC authentication which is working fine. But if I want to change to
DIGEST it doesn't work anymore.

This is the contents of my web.xml

....
        <security-constraint>
                <web-resource-collection>
                        <web-resource-name>test</web-resource-name>
                        <url-pattern>/servlet/*</url-pattern>
                </web-resource-collection>
                <auth-constraint>
                        <role-name>admin</role-name>
                </auth-constraint>
                <user-data-constraint>
                        <transport-guarantee>NONE</transport-guarantee>
                </user-data-constraint>
        </security-constraint>
        <login-config>
                <auth-method>DIGEST</auth-method>
        </login-config>
        <security-role>
                <role-name>admin</role-name>
        </security-role>

I also changed the passwords in tomcat-user.xml to their digest
representations and added digest="MD5" to the <realm> in the server.xml.

But it doesn't work. Any ideas? 

Regards,
Uwe


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to