/**
* Private constructor constructs sole instance.
*/
private JSkyServer() throws IOException {
httpServer_ = new HttpServer();
httpServer_.setDaemon(true);
/* Set up handler for custom resource serving. */
resourceHandler_ = new ResourceHandler(httpServer_, "/dynamic");
httpServer_.addHandler(resourceHandler_);