-
how to deploy WAR file in tomcat 4.0.4 (1 messages)
- Posted by: G Manikandan
- Posted on: December 30 2002 10:19 EST
how to deploy WAR file in tomcat 4.0.4Threaded Messages (1)
- how to deploy WAR file in tomcat 4.0.4 by Web Master on December 31 2002 16:21 EST
-
how to deploy WAR file in tomcat 4.0.4[ Go to top ]
- Posted by: Web Master
- Posted on: December 31 2002 16:21 EST
- in response to G Manikandan
copy your WAR to the webapps directory and start/restart tomcat. your app's context will be the same name as the WAR's name. tomcat will extract your app under webapps.
myapp.war would be accessible at http://localhost:8080/myapp
* If you name your WAR ROOT.war, then its context will be /, so http://localhost:8080/ is how you would access it.
HTH