int port = (args.length > 0) ? Integer.parseInt(args[0]) : 8000;
Logger.getLogger(TestReverseHttpService.class.getName()).log
(Level.FINE, "Starting on port " + port);
HttpServer httpd = new NormalHttpServer(port,
new TestNormalHttpService());
httpd.serve();
} catch (Exception e) {
e.printStackTrace();
}
}