博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 实现WebService 以及不同的调用方式
阅读量:7266 次
发布时间:2019-06-29

本文共 5489 字,大约阅读时间需要 18 分钟。

webservice:

    就是应用程序之间跨语言的调用
    wwww.webxml.com.cn
    1.xml
    2.    wsdl: webservice description language web服务描述语言
        通过xml格式说明调用的地址方法如何调用,可以看错webservice的说明书
    
    3.soap simple object access protoacl (简单对象访问协议)
        限定了xml的格式
        soap 在http(因为有请求体,所以必须是post请求)的基础上传输xml数据
            请求和响应的xml 的格式如:    <Envelop>
                                <body>
                                //....
                                </body>
                            </Envelop>
                operation name:服务提供的方法
                
        
    静态方法不能发布为外部服务
    
    运用jkd自带的代码生成访问服务器的客户端代码    E:/wsimort -s . http://test.cm/?wsdl
    
    我们可以把webservice看做是web服务器上的一个应用,web服务器是webservice的一个容器
    
    函数的参数在 http://test.cm/?xsd=1
    
    JAX-WS是指 java api for xml -WebService
    
    //测试 WebService服务的 explorer
    Web Service Explorer 可以显示返回的xml格式
    
    targetNamespace 默认为倒置的包名
    
客户端调用WebService的方式:
    1.通过wximport生成代码
    2.通过客户端编程方式
    3.通过ajax调用方式
    4.通过 URL Connection 方式调用
请求过程分析:
        1.使用get方式获取wsdl文件,称为握手
        2.使用post发出请求
        3.服务器响应成功过
    

几种监听工具:
    http watch
    Web Service explorer
    eclipse 自带工具   TCP/IP Monitor
   

 

 

   

    服务端代码:

package com.webservcie;import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.WebService;import javax.xml.ws.Endpoint;/** * WebService * 将 Java 类标记为实现 Web Service,或者将 Java 接口标记为定义 Web Service 接口 */@WebService(serviceName="MyService",targetNamespace="http://www.baidu.com")public class HelloService {        @WebMethod(operationName="AliassayHello")    @WebResult(name="myReturn")    public String sayHello(@WebParam(name="name") String name){        return  "hello: " + name;    }        public String sayGoodbye(String name){            return  "goodbye: " + name;    }        @WebMethod(exclude=true)//当前方法不被发布出去    public String sayHello2(String name){        return "hello " + name;    }    public static void main(String[] args) {        /**         * 参数1:服务的发布地址         * 参数2:服务的实现者         *  Endpoint  会重新启动一个线程         */        Endpoint.publish("http://test.cm/", new HelloService());        System.out.println("Server ready...");    }}

 

1.客户端调用(wximport自动生成代码 【推荐】)

package com.wsclient;public class App {    /**     * 通过wsimport 解析wsdl生成客户端代码调用WebService服务     *      * @param args     *      */    public static void main(String[] args) {        // TODO Auto-generated method stub                /**         * 
* 获得服务名称 */ MyService mywebService = new MyService(); /** *
*/ HelloService hs = mywebService.getHelloServicePort(); /** * 调用方法 */ System.out.println(hs.sayGoodbye("sjk")); System.out.println(hs.aliassayHello("sjk")); }}

 2.通过ajax+js+xml调用

            通过ajax调用WebService服务                                                    

 

3.URL Connection方式

import java.io.InputStream;import java.io.OutputStream;import java.net.HttpURLConnection;import java.net.URL;/** * 通过UrlConnection调用Webservice服务 * */public class App {    public static void main(String[] args) throws Exception {        //服务的地址        URL wsUrl = new URL("http://192.168.1.100:6789/hello");                HttpURLConnection conn = (HttpURLConnection) wsUrl.openConnection();                conn.setDoInput(true);        conn.setDoOutput(true);        conn.setRequestMethod("POST");        conn.setRequestProperty("Content-Type", "text/xml;charset=UTF-8");                OutputStream os = conn.getOutputStream();                //请求体        String soap = "
" + "
aaa
"; os.write(soap.getBytes()); InputStream is = conn.getInputStream(); byte[] b = new byte[1024]; int len = 0; String s = ""; while((len = is.read(b)) != -1){ String ss = new String(b,0,len,"UTF-8"); s += ss; } System.out.println(s); is.close(); os.close(); conn.disconnect(); }}

 

4.客户单编程方式(和第一种方式一样)

//文件名:HelloService.java import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.WebService;import javax.xml.bind.annotation.XmlSeeAlso;import javax.xml.ws.RequestWrapper;import javax.xml.ws.ResponseWrapper;/** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.1.6 in JDK 6 * Generated source version: 2.1 *  */@WebService(name = "HelloService", targetNamespace = "http://ws.itcast.cn/")@XmlSeeAlso({    })public interface HelloService {    /**     *      * @param arg0     * @return     *     returns java.lang.String     */    @WebMethod    @WebResult(targetNamespace = "")    @RequestWrapper(localName = "sayHello", targetNamespace = "http://ws.itcast.cn/", className = "cn.itcast.ws.client.SayHello")    @ResponseWrapper(localName = "sayHelloResponse", targetNamespace = "http://ws.itcast.cn/", className = "cn.itcast.ws.client.SayHelloResponse")    public String sayHello(        @WebParam(name = "arg0", targetNamespace = "")        String arg0);}

 

import java.net.MalformedURLException;import java.net.URL;import javax.xml.namespace.QName;import javax.xml.ws.Service;import cn.itcast.ws.wsimport.HelloService;/** * 通过客户端编程的方式调用Webservice服务 * */public class App {    public static void main(String[] args) throws Exception {        URL wsdlUrl = new URL("http://192.168.1.100:6789/hello?wsdl");        Service s = Service.create(wsdlUrl, new QName("http://ws.itcast.cn/","HelloServiceService"));        HelloService hs = s.getPort(new QName("http://ws.itcast.cn/","HelloServicePort"), HelloService.class);        String ret = hs.sayHello("zhangsan");        System.out.println(ret);    }}

 

    
   

转载地址:http://gpgdm.baihongyu.com/

你可能感兴趣的文章
密码提示强弱的正则表达式
查看>>
JavaScript中作用域相关的那些点
查看>>
Android项目构建过程分析
查看>>
惨遭红帽弃用,MongoDB要凉凉了吗?
查看>>
停止过度设计,开发客户需要的软件
查看>>
混沌实践访谈:混沌工程和系统可观测性密不可分
查看>>
量子计算竞速时代,如何拨动时间的指针
查看>>
Gremlin发布混沌工程实验平台免费版,开放了“故障即服务”功能
查看>>
构建一个运行在Azure虚拟机上的MySQL Spring Boot应用程序
查看>>
面试算法实践与国外大厂习题指南
查看>>
新的UWP和Win32应用程序分发模型
查看>>
对自组织的实验
查看>>
有赞融资10亿港元 腾讯领投加紧布局产业互联网
查看>>
IntelliJ IDEA 2017.2发布:更智能,更利落,更快速
查看>>
关于CarbonData+Spark SQL的一些应用实践和调优经验分享
查看>>
虎牙直播在微服务改造方面的实践和总结
查看>>
故障转移架构的本质:数据中心的基础设施过剩
查看>>
Hazelcast更换CEO,承诺继续造福开源社区
查看>>
京东618:商城分布式智能容器DNS实践
查看>>
热门云服务超87GB电子邮箱和密码泄露,黑客已验证大部分数据
查看>>