PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3580 *** shadow/3580 Thu Sep 13 04:18:18 2001 --- shadow/3580.tmp.2294 Thu Sep 13 04:18:18 2001 *************** *** 0 **** --- 1,36 ---- + +============================================================================+ + | manager webapp: role wrong | + +----------------------------------------------------------------------------+ + | Bug #: 3580 Product: Tomcat 4 | + | Status: NEW Version: Nightly Build | + | Resolution: Platform: Other | + | Severity: Normal OS/Version: Other | + | Priority: Other Component: Webapps | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + Hi, + + The docs state that role "admin" is checked for by the manager app. Eg, in + webapps/tomcat-docs/manager-howto.xml: + + <user name="craigmcc" password="secret" roles="standard,admin"> + + This is also what 3.x uses. + + However, the manager app actually requires role "manager". The web.xml contains: + + <auth-constraint> + <!-- NOTE: This role is not present in the default users file --> + <role-name>manager</role-name> + </auth-constraint> + + So either the docs need to change, or the manager web.xml needs to change. + Preferably the latter, given the precendent. + + --Jeff