|
Hi,
I'm trying to change:
HTTP ERROR: 404 %2FHelloWorldServlet3+Not+Found
when a Servlet can't be access with my Jetty
servlet container.
I make my own HttpServlet like this:
public class VirtualServer extends HttpServer
{
public
HttpContext service(HttpRequest request,HttpResponse response) throws
java.io.IOException, HttpException {
//No
servlet found detection here?
;
}
}
When there is a not found page error, How can I
detect this error, using Jetty APIS in Java.
I'm trying to modify service method, but I thinck
is not the correct method.
Thanks,
|