ich hab ein paar Probleme mit Tomcat. Ein einfachstes Servlet will nicht funktionieren.
Code: Alles auswählen
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class MyServlet extends HttpServlet
{
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException
{
// TODO Auto-generated method stub
super.doPosts(req, resp);
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
PrintWriter out = response.getWriter();
out.println("<HTML>");
out.println("<HEAD>");
out.println("<TITLE>Hi from Servlet Demo</TITLE>");
out.println("</HEAD>");
out.println("<BODY>");
out.println("Welcome to the Servlet Demo");
out.println("</BODY>");
out.println("</HTML>");
}
}
Ich hab den invoker aktiviert, damit die web.xml als Fehlerquelle schonmal wegfällt. Muss dazusagen, dass ich es ohne den invoker nichtmal ansatzweise zum Laufen bekommen hab (obwohl alles 10001x als Beispiel im web steht).HTTP Status 405 - HTTP method POST is not supported by this URL
type: Status report
message: HTTP method POST is not supported by this URL
description: The specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL).
Apache Tomcat/5.5