.setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1)
.setParameter(CoreProtocolPNames.USER_AGENT, "TEST-CLIENT/1.1");
this.httpproc = new BasicHttpProcessor();
// Required protocol interceptors
this.httpproc.addInterceptor(new RequestContent());
this.httpproc.addInterceptor(new RequestTargetHost());
// Recommended protocol interceptors
this.httpproc.addInterceptor(new RequestConnControl());
this.httpproc.addInterceptor(new RequestUserAgent());
this.httpproc.addInterceptor(new RequestExpectContinue());