// add the module to the server
webServer.addModule(httpFileModule);
// create an http listener for InetAddress.getLocalhost() on port 11111
IHttpListener httpListener = new HttpListener(11111);
// add the listener to the server
webServer.addHttpListener(httpListener);
// start the web server