import org.apache.xmlrpc.*; public class HelloServer { public String hello() { return "Hello from Marc Conrad"; } public static void main (String [] args) { try { WebServer server = new WebServer(80); server.addHandler("sample", new HelloServer()); server.start(); } catch (Exception exception) { System.err.println("JavaServer: " + exception); } } }