> From: Wojtek Kusch [mailto:[EMAIL PROTECTED] > Subject: Re: context.xml in Tomcat 6 > > <Host name="localhost" appBase="E:/Development/Tomcat/deploy/apps" > unpackWARs="true" > autoDeploy="false" deployOnStartup="false" > xmlValidation="false" xmlNamespaceAware="false">
The above looks fine. > My manager.xml in "tomcat 6.0\conf\catalina\localhost": Again, Tomcat is case-sensitive, even if Windows isn't. The proper name is "Catalina", not "catalina"; it may not make a difference in this particular instance, but it will in others. > <Context path="/manager" Another again: remove the path attribute; you may not use it in Tomcat 5 or 6 unless the <Context> element is inside server.xml, which is strongly discouraged. > docBase="E:/Development/Tomcat/deploy/apps/manager" The above could be just "manager", since you've already specified the first part of the location via the <Host> appBase attribute. > If I try "localhost:8080" I get a white page. You have no default application deployed, so that's expected. > If i try "localhost:8080/mamager" I get a white page, too. Assuming you meant "manager", not "mamager", that's also expected, since the manager app has no welcome file, and you have no default app to display the 404 status. > If i try "localhost:8080/mamager/html" I get a right page > (standard page). Also as expected. > I can't undestand this.... Please help! It's all working as you have specified; the primary thing you're missing is a default app under your appBase. The default app location must be the ROOT directory or the ROOT.war file. - 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 start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]