Instead of a basic-authentication dialog box, I get the following error message instead.
HTTP Status 401 - type Status report message description This request requires HTTP authentication (). Apache Tomcat/6.0.13 My tomcat-users.xml file looks like this: <?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="tomcat"/> <role rolename="manager"/> <role rolename="admin"/> <user username="tomcat" password="tomcat" roles="tomcat"/> <user username="manager" password="manager" roles="manager"/> <user username="admin" password="admin" roles="admin"/> </tomcat-users> >From web.xml I have: <!-- Define the Login Configuration for this Application --> <login-config> <auth-method>BASIC</auth-method> <realm-name>Tomcat Manager Application</realm-name> </login-config> <!-- Security roles referenced by this web application --> <security-role> <description> The role that is required to log in to the Manager Application </description> <role-name>manager</role-name> </security-role> But the dialog NEVER APPEARS. Any help would be greatly appreciated. I can't get ANT to work without this. -- View this message in context: http://www.nabble.com/No-Authentication-Dialog-appears-for-Tomcat-Manager-tp14780731p14780731.html Sent from the Tomcat - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]