I recently reinstalled my operating system (Windows XP Pro) and decided to use the latest Apache
Tomcat downloads to run my projects in
JSP,
Java
I downloaded:
Apache-tomcat-7.0.39-windows-x86.zip Core
Apache-tomcat-7.0.39.exe Windows Installer
I unzipped the Core into my c drive and renamed it apache-tomcat7
I ran the Windows Installer
I created 2 Environment variables through my Control Panel under System.
In the advanced tab I added:
CATALINA_HOME c:\apache-tomcat7
JAVA_HOME c:\Program Files\Java\jdk1.7.0_21
When I go to Internet Explorer and enter:
http://localhost:8080
I get
If you're seeing this, you've successfully installed Tomcat. Congratulations!
However, I can’t bring up any code I’ve created.
I decided, for example, to write a simple helloworld.jsp and place it under webapps:
I get HTTP Status 404 The requested resource is not available
The logs folder is empty
What am I missing?
Thanks,
Robin