package derms.replica1; import javax.xml.ws.Endpoint; public class DERMSServerPublisher { public static void main(String[] args) { try { Endpoint.publish("http://localhost:8387/ws/derms", new DERMSServer("MTL")); // Endpoint.publish("http://localhost:8081/ws/derms", new DERMSServer("QUE")); // Endpoint.publish("http://localhost:8082/ws/derms", new DERMSServer("SHE")); } catch (InterruptedException e) { throw new RuntimeException(e); } System.out.println("DERMS Web Service is published at http://localhost:8387/ws/derms"); } }