Winner wrote: > > I'm using the Apache Tomcat v4.1 ... on Solaris 8 > I would like to create/deploy a directory with different filename, > let say "http://hello.test.com:8080/project/index.html". >
If you're not sure about the term "webapp", then you need to get up to speed on some basic servlet concepts before you go any further. There are some tutorials at: http://java.sun.com/products/servlet/technical.html Just pick a tutorial and work through it, shouldn't take very long to get the basic idea. For Tomcat specific configuration issues, you might start with: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ Read "Getting Started: Introduction" (link on the left), and then "Application Developers: App Developer Guide" In a nutshell, you create a subdirectory in the webapps directory of your Tomcat installation, and put all your files in there. Tomcat looks in the webapps directory, finds your subdirectory, and deploys your webapp automatically. Of course, your files need to be in just the right format, but you can learn all about that by reading the finely written documentation at the other end of the URLs. -- Christopher St. John [EMAIL PROTECTED] DistribuTopia http://www.distributopia.com ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
