Hi Chuck, Here is the web.xml file..seems to be okay.
<servlet> <servlet-name>HTMLManager</servlet-name> <servlet-class>org.apache.catalina.manager.HTMLManagerServlet</servlet-c lass> <init-param> <param-name>debug</param-name> <param-value>2</param-value> </init-param> </servlet> <servlet> <servlet-name>Status</servlet-name> <servlet-class>org.apache.catalina.manager.StatusManagerServlet</servlet -class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> </servlet> And here is the Manager.xml: Context configuration file for the Tomcat Manager Web App $Id: manager.xml,v 1.2 2004/02/20 17:09:29 remm Exp $ --> <Context path="/manager" docBase="${catalina.home}/server/webapps/manager" debug="0" privileged="true"> <!-- Link to the user database we will get roles from --> <ResourceLink name="users" global="UserDatabase" type="org.apache.catalina.UserDatabase"/> </Context> ~ -----Original Message----- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 2:27 PM To: Tomcat Users List Subject: RE: Tomcat 5 error 404 > From: Bliesner, Christopher P > [mailto:[EMAIL PROTECTED] > Subject: RE: Tomcat 5 error 404 > > Here is the URL I'm trying: //eptest01:8080/manager/html which uses > the direct port. > > And I copied the same tomcat-users.xml from Tomcat 4.1.12 which works > great. There should be a file manager.xml in conf/Catalina/localhost containing the following: <Context docBase="${catalina.home}/server/webapps/manager" privileged="true"> <!-- Link to the user database we will get roles from --> <ResourceLink name="users" global="UserDatabase" type="org.apache.catalina.UserDatabase"/> </Context> Under server/webapps/manager/WEB-INF, you should have a web.xml that includes <servlet> <servlet-name>HTMLManager</servlet-name> <servlet-class>org.apache.catalina.manager.HTMLManagerServlet</servlet-c lass> <init-param> <param-name>debug</param-name> <param-value>2</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>HTMLManager</servlet-name> <url-pattern>/html/*</url-pattern> </servlet-mapping> among numerous other servlet declarations and mappings. Are those all in place? (The above examples are from 5.5, so yours might be slightly different.) - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]