I have installed tomcat 5.0.28 and it finds its home page just fine. It also runs the examples just fine. But
any application I add to /webapps I get the 404 Requested Resource not found message. The application consists of one
.jsp file
I am running Win XP sp2
The application is deployed in $CATALINA_HOME/webapps/RequestHeaders
The url is
I have restarted TOMCAT restarted many times and also deleted the log files.
The jsp (request.jsp) contains the following
<%@ taglib uri=" prefix=c" %>
<html>
<body>
You sent the following request headers:
<br/>
<table border="1">
<tr>
<th>Header</th>
<th>Value</th>
</tr>
<c:forEach var="entry" items="${header}">
<tr>
<td>${entry.key}</td>
<td>${entry.value}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Any help is highly appreciated.
Thanks
Suraj99
Error message is shown below
HTTP Status 404 - /RequestHeaders/request.jsp
--------------------------------------------------------------------------------
type Status report
message /RequestHeaders/request.jsp
description The requested resource (/RequestHeaders/request.jsp) is not available.
--------------------------------------------------------------------------------
Apache Tomcat/5.0.28
any application I add to /webapps I get the 404 Requested Resource not found message. The application consists of one
.jsp file
I am running Win XP sp2
The application is deployed in $CATALINA_HOME/webapps/RequestHeaders
The url is
I have restarted TOMCAT restarted many times and also deleted the log files.
The jsp (request.jsp) contains the following
<%@ taglib uri=" prefix=c" %>
<html>
<body>
You sent the following request headers:
<br/>
<table border="1">
<tr>
<th>Header</th>
<th>Value</th>
</tr>
<c:forEach var="entry" items="${header}">
<tr>
<td>${entry.key}</td>
<td>${entry.value}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Any help is highly appreciated.
Thanks
Suraj99
Error message is shown below
HTTP Status 404 - /RequestHeaders/request.jsp
--------------------------------------------------------------------------------
type Status report
message /RequestHeaders/request.jsp
description The requested resource (/RequestHeaders/request.jsp) is not available.
--------------------------------------------------------------------------------
Apache Tomcat/5.0.28