package ws;

import javax.xml.ws.Endpoint;

public class Server {
    public static void main(String[] args) {
        Endpoint.publish("http://127.0.0.1:8080/hello", new HelloServiceImpl());
        System.out.println("SOAP HelloService running on port 8080");
    }
}
