Well, we figured it out. For anyone that should need to know, if you place this into server.xml in conf:
<Context path="/yourPath" docBase="../server/webapps/admin" privileged="true">
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
<Context path="/yourPath" docBase="../server/webapps/manager" privileged="true">
<ResourceLink global="UserDatabase" name="users" type="org.apache.catalina.UserDatabase"/>
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
... with the other context paths nested in <host>...</host>, it will work. Where you see path="/yourPath", substitute whatever you want your context path to be.
Hope this helps someone down the road,
Veg
|