HttpServer httpServer = GrizzlyServerFactory.createHttpServer(baseUri, rc);
System.out.println(String.format("Jersey app started with WADL available at %sapplication.wadl\n" +
"Try out %sdiscrete?d=88,84,82,92,82,86,66,82,44,64,66,88,96,80,24,26,14,0,0,26,8,6,6,24,52,66,36,6,10,14,30\n" +
"Hit enter to stop it...", baseUri, baseUri));
System.in.read();
httpServer.stop();
}
}