Re: Setting up cocoon at site root

2003-06-27 Thread Lajos
Hi Justin - Easy. Make the path for the cocoon Context in server.xml and remove/comment out the ROOT Context. If you don't have an entry for cocoon in server.xml, then you could even just edit the existing root definition and change ROOT to cocoon. Regards, Lajos Justin Makeig wrote:

Re: Setting up cocoon at site root

2003-06-27 Thread Justin Makeig
Lajos, Thanks so much for the quick response. I'm still kind of muddled in the Tomcat documentation, though. Here's what I changed in server.xml: Host name=localhost debug=0 appBase=webapps/cocoon unpackWARs=true autoDeploy=true ... Context path= docBase=mysite debug=0/ However, when I

Re: Setting up cocoon at site root

2003-06-27 Thread Lajos
Justin - You can't make webapps/cocoon your host's appBase. The appBase must point to the directory containing the web applications, cocoon being one of them. So set appBase to just webapps, and the docBase of the default Context to cocoon. Regards, Lajos Justin Makeig wrote: Lajos, Thanks