zoukankan      html  css  js  c++  java
  • 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("李泽阳");
        }
    }
  • 相关阅读:
    table布局与div布局
    HTML一般标签
    jquery
    PDO对象
    分页例题
    投票练习
    封装 链接数据库类
    访问数据方法
    面相对象多态
    面向对象
  • 原文地址:https://www.cnblogs.com/lizeyang/p/6193114.html
Copyright © 2011-2022 走看看