package example; import javax.jws.WebMethod; import javax.jws.WebService; import javax.xml.ws.Endpoint; /** * Created with IntelliJ IDEA. * User: ishara * Date: 4/6/13 * Time: 10:10 AM * To change this template use File | Settings | File Templates. */ @WebService() public class HelloWorld { @WebMethod public String sayHelloWorldFrom(String from) { String result = "Hello, world, from " + from; System.out.println(result); return result; } public static void main(String[] argv) { Object implementor = new HelloWorld(); String address = "http://localhost:9000/HelloWorld"; Endpoint.publish(address, implementor); } }