Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Requested Resource Not Available (Apache TOMCAT 5.0.28)

843838May 22 2007 — edited May 23 2007
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 http://localhost:8080/RequestHeaders/request.jsp

I have restarted TOMCAT restarted many times and also deleted the log files.

The jsp (request.jsp) contains the following
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 20 2007
Added on May 22 2007
10 comments
889 views