On 04/05/2010 17:59, Joe Hansen wrote:
> Mark, Here's the server.xml before moving abc out of the webapps directory:
> 
>         <Host name="abc.local" appBase="webapps/abc"
>                       unpackWARs="true" autoDeploy="true"
>                       xmlValidation="false" xmlNamespaceAware="false">
>                       <Context path="" docBase="">
>                       </Context>
>         </Host>

And therein lies the problem. docBase="" is not valid.


Currently, your app is deployed once under localhost with context path
"/abc" and is partially deployed under abc.local with context path "".
Additionally, every directory under webapps/abc will be deployed as a
web application under abc.local

Quite a mess.

What is it you are trying to achieve?

Mark



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to