首页 > 代码库 > webService
webService
第一步:使用第三方调用WebService
第二步:调用wsimport命令,导入webService
将导入的文件复制到MyEcliprice项目文件中
使用@WebService注解
package Test; import javax.jws.WebService; import javax.xml.ws.Endpoint; //局域网任何人都可以访问access @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.15.81:50000/hello", new HelloService()); System.out.println("server is listening..."); } }
新建测试类
package MyTest; import test.HelloService; import test.HelloServiceService; public class mytest { public static void main(String[] args) { HelloServiceService hs=new HelloServiceService(); HelloService helloServicePort = hs.getHelloServicePort(); helloServicePort.say("李泽阳"); } }
webService
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。