Hi all, I'm using an online tutorial to get to grips on displaying a jsp page using tomcat. The instructions are as follows:
Go to C:\apache-tomcat-6.0.14\webapps\ folder and create a new directory with the name of "star". You can give it any name you want but for this example we'll stick with "star".
Now create a new file and save it as 'index.jsp' in the "star" directory created above. Copy the following text into 'index.jsp' file and save it :
<html>
<head>
<style>p { font-family:tahoma; font-size:14pt; }</style>
</head>
<body>
<%
String name = "Your Name";
%>
<p>Hello <%= name %>!</p>
</body>
</html>
Start Tomcat server and point your browser to
http://localhost:8080/star/index.jsp to see the JSP page running.
Except the page doesn't show up for some reason...what am I doing incorrectly?
Thanks in advance