HttpServletResponse response)
throws ServletException, IOException {
RequestContext reqcontext = new HttpServletRequestContext(context, request);
ItemManager<RequestHandler> manager = context.getRequestHandlerManager();
log.debug("Processing request");
RequestHandler handler = manager.get(reqcontext);
log.debug("Handler - " + handler);
try {
handler.process(context, reqcontext, response);
} catch (Throwable t) {
error("Error servicing request", t, response);
return;
} finally {
log.debug("Releasing handler - " + handler);