i m a stater with jsp .... have installed Tomact 5.0.28. Its displaying server page when i type http://localhost:8080
now i have made a simple context.jsp file---->
<HTML>
<HEAD>
<TITLE>
Context
</TITLE>
</HEAD>
<BODY>
<%
out.println("First JSP APPLICATION");
%>
</BODY>
</HTML>
placed it in a folder ch in webapps folder of tomcat...
when i try to run it by
http://localhost:8080/ch/context.jsp
it shows the error
type Status report
message /Context.jsp
description The requested resource (/Context.jsp) is not available.
please help....