A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Products
»
Tomcat
Author
HTTP Status 404 - /testJSP1/BasicCounter.jsp
Tom Nishan
Greenhorn
Joined: Feb 04, 2011
Posts: 7
posted
Mar 08, 2011 11:40:05
0
Hello I got this error when I run my
JSP
file:
HTTP Status 404 - /testJSP1/BasicCounter.jsp
type Status report
message /testJSP1/BasicCounter.jsp
description The requested resource (/testJSP1/BasicCounter.jsp) is not available.
I use Tomcat5.
JSP file:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
The page count is:
<%
out.println(foo.Counter.getCount());
%>
</body>
</html>
And Java file is:
package foo;
public class Counter {
private static int count;
public static synchronized int getCount(){
count++;
return count;
}
}
web.xml file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd
"
version="2.4">
<display-name>JSP
Test
</display-name>
<description>
JSP Test
</description>
<
servlet
>
<servlet-name>MyBasicCounter</servlet-name>
<jsp-file>/BasicCounter.jsp</jsp-file>
</servlet>
</web-app>
Could you please help to solve this problem.
Thank you in advance.
Tom
Misha Ver
Ranch Hand
Joined: Mar 03, 2008
Posts: 470
posted
Mar 11, 2011 16:08:31
0
Tom Nishan wrote:
Hello I got this error when I run my JSP file
How do you run it?
I agree. Here's the link:
http://aspose.com/file-tools
subject: HTTP Status 404 - /testJSP1/BasicCounter.jsp
Similar Threads
problem on validatinfg role for security of </security-constraint>
Need help in deploying Counter example in chapter 7
Error message in struts application requested resource is not available
runtime ERROR
Unable to run web application(java) on tomcar server
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter