Yoav
Ok, first your webapp folder structure: Tomcat/webapps/myApp Tomcat/webapps/myApp/WEB-INF/ Tomcat/webapps/myApp/WEB-INF/classes/ # ALL class files go here Tomcat/webapps/myApp/WEB-INF/lib/ # All .jar files goes here Tomcat/webapps/myApp/WEB-INF/web.xml # This is your deployment descriptor file. In tomcat if you go to: Tomcat/conf/ you will find a file called server.xml. Open up this file and find the area containing the following: <!-- Tomcat Root Context --> <!-- <Context path="" docBase="ROOT" debug="0"/> --> After this you can set the context for your own web-app, for example: <Context path="/myApp" docBase="myApp" debug="0" reloadable="true"/> Stop and start Tomcat and you should be able to access your application by going to: http://localhost:8080/myApp/ Kind Regards Schalk Neethling Volume4.Development.Multimedia.Branding emotionalize.conceptualize.visualize.realize Tel: +27125468436 Fax: +27125468436 email:[EMAIL PROTECTED] web: www.volume4.co.za :: -----Original Message----- :: From: Shapira, Yoav [mailto:[EMAIL PROTECTED] :: Sent: Friday, August 29, 2003 4:54 PM :: To: Tomcat Users List :: Subject: RE: Newbie:web application :: :: :: Howdy, :: :: >I'm developing a web application but I don't understand where i have to :: put :: >my context: I have a folder /myApp, under this I have the standard :: folders :: >for a web application. :: > :: >I put alla in <tomcat-home>/webapps but nothing! :: :: :: So you have <tomcat-home>/webapps/myApp, and under it WEB-INF, etc? :: That's good. Do you have a web.xml file under WEB-INF? What errors are :: you getting in the log? :: :: Yoav Shapira :: :: :: :: :: This e-mail, including any attachments, is a confidential business communication, :: and may contain information that is confidential, proprietary and/or privileged. This :: e-mail is intended only for the individual(s) to whom it is addressed, and may not be :: saved, copied, printed, disclosed or used by anyone else. If you are not the(an) :: intended recipient, please immediately delete this e-mail from your computer system :: and notify the sender. Thank you. :: :: :: --------------------------------------------------------------------- :: To unsubscribe, e-mail: [EMAIL PROTECTED] :: For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
