252627282930313233
public class Server { protected Server() throws Exception { System.out.println("Starting Server"); ComplexImpl complexImpl = new ComplexImpl(); String address = "http://localhost:9000/Complex"; Endpoint.publish(address, complexImpl); }