标签:相同 其他 远程 protoc 还需要 函数 接口 imp 因特网
package happy; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebService public class helloService { public void say(String name){ System.out.println("hello"+name); } public static void main(String[] args) { Endpoint.publish("http://192.168.0.106:50000/hello", new helloService()); System.out.println("server is listenning..... "); } }
在命令中输入wsimport -s . http://192.168.0.106:50000/hello?wsdl
public class Test { public static void main(String[] args) { HelloServiceService service=new HelloServiceService(); HelloService port = service.getHelloServicePort(); port.say("逗比"); } }
标签:相同 其他 远程 protoc 还需要 函数 接口 imp 因特网
原文地址:http://www.cnblogs.com/Smile-123/p/6193383.html