request.getParams().setDefaults(this.params);
HttpResponse response = this.responseFactory.newHttpResponse(ver, HttpStatus.SC_OK);
response.getParams().setDefaults(this.params);
// Configure HTTP context
HttpContext context = new HttpExecutionContext(parentContext);
context.setAttribute(HttpExecutionContext.HTTP_CONNECTION, conn);
context.setAttribute(HttpExecutionContext.HTTP_REQUEST, request);
context.setAttribute(HttpExecutionContext.HTTP_RESPONSE, response);
try {
// Pre-process the request
this.httpProcessor.process(request, context);