How to make a different web app the main page in tomcat.

From: anonymous (fenton_travers_at_yahoo.com)
Date: 10/07/03


Date: 7 Oct 2003 09:30:50 -0700

Hi I've installed tomcat. I want to specify where some gets to, i.e.
one of my own custom webapps, when they type in my url, i.e.
www.<mysite>.com.

Currently they just go to

$CATALINA_HOME/webapps/ROOT/index.jsp

I want them to go to

$CATALINA_HOME/webapps/myNewWebApp/index.jsp

I tried changing the line:

<Context path="" docBase="ROOT" debug="0"/>

to

<Context path="" docBase="myNewWebApp" debug="0"/>

but that didn't seem to affect anything even after I restarted
tomcat...

Ideas?

FT