new UsernamePasswordCredentials("testuser", "testpass");
this.httpclient.getState().setCredentials(AuthScope.ANY, creds);
this.httpclient.getState().setProxyCredentials(AuthScope.ANY, creds);
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds, "test", false));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
this.httpserver.setRequestHandler(handlerchain);
this.proxy.requireAuthentication(creds, "test", true);