Anton: JSP/ Tomcat auf Win XP

Beitrag lesen

Neu installiert und nun klappt es.
Allerdings habe ich ein anderes Problem. Habe es gerade mal bei Sun gepostet, aber es kommt keine Antwort. Habe keine Lust es nochmal zu übersetzten. Weiß jemand was nun wieder falsch sein könnte ?

Hi Forum,

I hope that I can ask an absolute beginner question here.

Just installed the latest version of Tomcat. The examples work, so it must be installed correctly.
Going through a tutorial I just created this file under webapps/manning/

<html>
<body>
<% String visitor = request.getParameter("name");
if (visitor == null) {
visitor = "World";
} %>

Hello, <% visitor %>!
</body>
</html>

When I try to access this page with: http://localhost:8080/manning/index.jsp

I get:

HTTP Status 404 - /manning/index.jsp

type Status report

message /manning/index.jsp

description The requested resource (/manning/index.jsp) is not available.
Apache Tomcat/5.0.28

Why is that?