final HttpContext context) throws HttpException, IOException {
super.onLog(Level.FINE, "Handlig Class: " + this.getClass().getName());
//-- check method --//
final String method = request.getRequestLine().getMethod().toUpperCase(Locale.ENGLISH);
if (!method.equals("GET")) {
throw new MethodNotSupportedException(method + " method not supported");
}
final WebContext webcontext = new WebContext(request, response, context);
final String target = request.getRequestLine().getUri();
final WebUri uri = new WebUri(target);