@WebService
public class HelloWorldService {
@WebMethod
public String sayHello(String name) {
return "Hello, " + name + "!";
}
}
public class HelloWorldPublisher {
public static void main(String[] args) {
HelloWorldService service = new HelloWorldService();
String address = "http://localhost:8080/hello";
Endpoint.publish(address, service);
}
}