return;
}
// To support both servlet 2.4/2.5 server(here domino8/servlet2.5),
// adapt all servlet resources on the entrance of framework.
HttpServletRequestAdapter newReq = new ExtensionMappingRequest(req);
HttpServletResponseAdapter newResp = new HttpServletResponseAdapter(
resp);
Object servletReference = acquireDelegateReference();
if (servletReference == null) {
resp
.sendError(
HttpServletResponse.SC_NOT_FOUND,
"Framework Servlet Delegate not found for: " + newReq.getRequestURI()); //$NON-NLS-1$
return;
}
// Buffer the original thread context class loader and ready to invoke
// framework objecct. For framework may change this.