final HttpProcessor httpproc = HttpProcessorBuilder.create()
.add(new ResponseDate())
.add(new ResponseServer(LocalTestServer.ORIGIN))
.add(new ResponseContent())
.add(new ResponseConnControl())
.add(new RequestBasicAuth())
.add(new ResponseBasicUnauthorized()).build();
this.localServer = new LocalTestServer(
httpproc, null, null, new AuthExpectationVerifier(), null);
this.localServer.register("*", new AuthHandler());
this.localServer.start();