码迷,mamicode.com
首页 > Web开发 > 详细

webService

时间:2016-12-17 22:56:50      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:lis   color   文件中   image   code   eth   hello   vax   9.png   

第一步:使用第三方调用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

标签:lis   color   文件中   image   code   eth   hello   vax   9.png   

原文地址:http://www.cnblogs.com/lizeyang/p/6193114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!