> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Subject: Running multiple tomcat instances with Tomcat 6.0.14
> 
> conf
>       Catalina
>                     localhost
>                                     context.xml
> 
> Contents of context.xml are as follows -
> <Context path="" docBase="D:/test/LATEST/docs" debug="0"
> privileged="true" allowLinking="true">
> </Context>

The above is incorrect, on all Tomcat levels.  The fact that it happened
to do anything at all on older versions just demonstrates that bugs have
been fixed in the newer ones.

The <Context> element in conf/Catalina/localhost/context.xml is intended
to provide attributes shared by all webapps deployed under the related
<Host>, not the settings for an individual webapp.  If you want to
specify the location of the defautl webapp, remove the path attribute
(it's not allowed here), and change the name of that file to ROOT.xml
(case sensitive, even on Windows).  Since you're defining the default
webapp, delete any ROOT directory or ROOT.war file under the <Host>
appBase directory.

 - 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]

Reply via email to