aspose file tools
The moose likes Tomcat and the fly likes new application in tomcat4.0 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Tomcat
Reply Bookmark "new application in tomcat4.0" Watch "new application in tomcat4.0" New topic
Author

new application in tomcat4.0

Vedhas Pitkar
Ranch Hand

Joined: Jan 27, 2001
Posts: 445
How do i create a new application in tomcat so that i can access it using
http://localhost/myapp or
http://myapp
If anyone has the solution plz let me know quickly as i am in dire straits.
Balaji Loganathan
author and deputy
Bartender

Joined: Jul 13, 2001
Posts: 3150
In conf/server.xml add this
<Context path="/myapps"
docBase="webapps/myapps"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
In tomcat under webapps directory create directorys
1.webapps\myapps\
2. webapps\myapps\web-inf\
3.webapps\myapps\web-inf\classes\
4.webapps\myapps\meta-inf

Check examples folder for better replication.Read docs for more understanding and modification.


Spritle Software Blogs
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: new application in tomcat4.0
 
Similar Threads
How to access gif files from servelets
Default Web Application
Mapping Servlet to just the Context Root?
Basic JSP problem
is use of Struts in a social networking like site worth it?