package org.openslx.dnbd3.status; import java.io.IOException; public class App { public static void main( String[] args ) throws IOException { System.setProperty( "com.example.jndi.dns.timeout.initial", "400" ); System.setProperty( "com.example.jndi.dns.timeout.retries", "2" ); WebServer ws = new WebServer( 8888 ); ws.run(); } }