Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Requested Resource Not Available (Apache TOMCAT 5.0.28)

Status
Not open for further replies.

suraj99

Programmer
May 21, 2007
1
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top