*/
public class SocketIOServerTest {
public static void main(String[] args) throws InterruptedException {
int port = 9090;
final Vertx vertx = new DefaultVertx();
HttpServer httpServer = vertx.createHttpServer();
SocketIOServer io = new DefaultSocketIOServer(vertx, httpServer);
io.configure(new Configurer() {
public void configure(JsonObject config) {
config.putString("transports", "websocket,flashsocket,xhr-polling,jsonp-polling,htmlfile");