Caldarale, Charles R wrote:
From: Pete McNeil [mailto:madscient...@microneil.com]
Subject: Re: Tomcat6 - porting resin JSP app - does not exist or is not
areadable directory
The case of path made no difference to the error.
Please post your entire server.xml so we can see all the <Host> and <Engine>
entries. Omit the comments, if feasible.
I cut, pasted, and removed comments -- here it is:
<Server port="8005" shutdown="SHUTDOWN">
<Listener className="org.apache.catalina.core.JasperListener" />
<Listener
className="org.apache.catalina.mbeans.ServerLifecycleListener" />
<Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<GlobalNamingResources>
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<Service name="Catalina">
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Engine name="Catalina" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
<Host name="someplace" appBase="/home/someplace/webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Context
path=""
docBase="/home/someplace/www.someplace.com"
reloadable="true"/>
<Alias>www.someplace.com</Alias>
<Alias>someplace.com</Alias>
<Alias>www.someplace.net</Alias>
<Alias>someplace.net</Alias>
</Host>
</Engine>
</Service>
</Server>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org