try {
final BasicHttpContext localContext = new BasicHttpContext();
final HttpCoreContext context = HttpCoreContext.adapt(localContext);
while (!Thread.interrupted() && this.conn.isOpen()) {
this.httpservice.handleRequest(this.conn, context);
localContext.clear();
}
this.conn.close();
} catch (Exception ex) {
this.exceptionLogger.log(ex);
} finally {