// FIXME DZ: we don't use the inherited SERVER_PORT here because it's not set
// at this point and we can't move super.doSetUp() above this
httpServer = new Server(dynamicPort.getNumber());
Context c = new Context(httpServer, "/", Context.SESSIONS);
c.addServlet(new ServletHolder(new MuleAjaxServlet()), "/ajax/*");
c.addEventListener(new MuleServletContextListener(muleContext, null));
httpServer.start();
super.doSetUp();