package lab.soap;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
@WebService
public class HelloWorldService {
@WebMethod
public String sayHello(String name) {
return "Hello, " + name + "! Welcome to SOAP services.";
}
public static void main(String[] args) {
Endpoint.publish("http://localhost:8080/soap/hello", new HelloWorldService());
System.out.println("Service running at http://localhost:8080/soap/hello?wsdl");
}
}