WebService学习笔记(一)

一、基础进阶

  1. httpclient调用WebService
package com.demo;

import com.midea.gls.MobileCodeWS;
import com.midea.gls.MobileCodeWSSoap;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

/**
 * \* Created with IntelliJ IDEA.
 * \* Author: huyi
 * \* Date: 2017/2/17 22:15
 * \* Description:
 * \
 */
public class WSHttpClient {



    public static void main(String[] args) {
        String mobileCode = "18680586568";

       // get(mobileCode);
//        post(mobileCode);

        soap(mobileCode);
    }

    public static void get(String mobileCode){
        HttpClient client = HttpClients.createDefault();
        HttpGet httpGet = new HttpGet("http://ws.webxml.com.cn//WebServices/MobileCodeWS.asmx/getMobileCodeInfo?mobileCode="+mobileCode+"&userID=");
        try {
            HttpResponse response = client.execute(httpGet);
            System.out.println("executing request " + httpGet.getURI());
            // 获取响应实体
            HttpEntity entity = response.getEntity();
            System.out.println("--------------------------------------");
            // 打印响应状态
            System.out.println(response.getStatusLine());
            if (entity != null) {
                // 打印响应内容长度
                System.out.println("Response content length: " + entity.getContentLength());
                // 打印响应内容
                System.out.println("Response content: " + EntityUtils.toString(entity));
            }
            System.out.println("------------------------------------");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void post(String mobileCodeVal){
        HttpClient client = HttpClients.createDefault();
        HttpPost httpPost = new HttpPost("http://ws.webxml.com.cn//WebServices/MobileCodeWS.asmx/getMobileCodeInfo");
        try {
            //设置参数
            List<NameValuePair> list = new ArrayList<NameValuePair>();
            list.add(new BasicNameValuePair("mobileCode",mobileCodeVal));
            list.add(new BasicNameValuePair("userID",""));
            UrlEncodedFormEntity requestEntiry = new UrlEncodedFormEntity(list);
            httpPost.setEntity(requestEntiry);
            HttpResponse response = client.execute(httpPost);
            System.out.println("executing request " + httpPost.getURI());
            // 获取响应实体
            HttpEntity httpEntity = response.getEntity();
            System.out.println("--------------------------------------");
            // 打印响应状态
            System.out.println(response.getStatusLine());
            if (httpEntity != null) {
                // 打印响应内容长度
                System.out.println("Response content length: " + httpEntity.getContentLength());
                // 打印响应内容
                System.out.println("Response content: " + EntityUtils.toString(httpEntity));
            }
            System.out.println("------------------------------------");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void soap(String mobileVal){
        MobileCodeWS mobileCodeWS = new MobileCodeWS();
        MobileCodeWSSoap mobileCodeWSSoap = mobileCodeWS.getMobileCodeWSSoap();
        String address = mobileCodeWSSoap.getMobileCodeInfo(mobileVal, null);
        System.out.println(address);
    }
}
  1. wsimport调用WSDL
wsimport -s . -p com.midea.gls http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?WSDL

找到WSDL中关于service的调用

    public static void soap(String mobileVal){
        MobileCodeWS mobileCodeWS = new MobileCodeWS();
        MobileCodeWSSoap mobileCodeWSSoap = mobileCodeWS.getMobileCodeWSSoap();
        String address = mobileCodeWSSoap.getMobileCodeInfo(mobileVal, null);
        System.out.println(address);
    }

二 、 发布自己的WSDL

发布自己的WSDL时候,需要注意,地址栏后面要自己加?WSDL

package com.demo;

import javax.jws.WebService;
import javax.xml.ws.Endpoint;

/**
 * \* Created with IntelliJ IDEA.
 * \* Author: huyi
 * \* Date: 2017/2/20 13:32
 * \* Description:
 * \
 */
@WebService
public class MyWS {

    public String sayHello(String name) {
        String reVal = name + ", 你好!";
        System.out.println(reVal);
        return reVal;
    }

    public static void main(String[] args) {
        String address = "http://10.74.96.29/ws";
        Endpoint.publish(address , new MyWS());
        System.out.println("发布的地址是:"+address);
    }
}

访问http://10.74.96.29/ws?WSDL,可以见到

This XML file does not appear to have any style information associated with it. The document tree is shown below.
<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://demo.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="MyWSService" targetNamespace="http://demo.com/">
<wsdl:types>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://demo.com/" elementFormDefault="unqualified" targetNamespace="http://demo.com/" version="1.0">
<xs:element name="sayHello" type="tns:sayHello"/>
<xs:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
<xs:complexType name="sayHello">
<xs:sequence>
<xs:element minOccurs="0" name="arg0" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="sayHelloResponse">
<xs:sequence>
<xs:element minOccurs="0" name="return" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="sayHello">
<wsdl:part element="tns:sayHello" name="parameters"></wsdl:part>
</wsdl:message>
<wsdl:message name="sayHelloResponse">
<wsdl:part element="tns:sayHelloResponse" name="parameters"></wsdl:part>
</wsdl:message>
<wsdl:portType name="MyWS">
<wsdl:operation name="sayHello">
<wsdl:input message="tns:sayHello" name="sayHello"></wsdl:input>
<wsdl:output message="tns:sayHelloResponse" name="sayHelloResponse"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="MyWSServiceSoapBinding" type="tns:MyWS">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="sayHello">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="sayHello">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="sayHelloResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="MyWSService">
<wsdl:port binding="tns:MyWSServiceSoapBinding" name="MyWSPort">
<soap:address location="http://10.74.96.29/ws"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

三 、客户端访问

  1. 首先在CMD中调用wsimport工具生成本地WebService代码
wsimport -s . -p com.ws http://10.74.96.29/ws?WSDL
  1. 导入代码到本地项目后,直接调用即可
    public static void soap2(String mobileVal){
        MyWS mobileCodeWS = new MyWS();
        String name = "huyi";
        String reVal = mobileCodeWS.sayHello(name);
        System.out.println(reVal);
    }

注意:一个端口可以发布多个Webservice服务

四 、ajax访问WebService

ajax不能直接访问WebService,因为存在跨域的问题,需要变通一下,通过ajax调用工程下的客户端访问WebService,客户端可以是一个servlet,或者spring下的controller

ws.jsp

<%--
  Created by IntelliJ IDEA.
  User: huyi
  Date: 2017/2/20
  Time: 15:05
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>

<html>
<head>

    <title>$Title$</title>
    <script src="js/jquery/jquery.min.js"></script>
    <script>


        $("#myWs").click(function () {
            console.info(data);
            /**/
            console.info("----2-------");
        })

        function getVal() {
            console.info("-----1---" + $("#myWs").val() + "------");
            var data = {
                name:$("#name").val()
            }

            $.ajax({
                method:'POST',
                url:'http://localhost:8080/ws/myWsServlet?name='+$("#name").val(),
                success:function(result) {
                    console.info("-----3---" + result + "------");
                }
            });
        }

    </script>
</head>
<body>
<input type="text" id="name">
<input type="button" name="调用WebService" id="myWs" value="调用WebService" onclick="getVal()">
</body>
</html>

servlet

package com.gls.ws;

import com.demo.*;

import javax.servlet.Servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * \* Created with IntelliJ IDEA.
 * \* Author: huyi
 * \* Date: 2017/2/20 15:50
 * \* Description:
 * \
 */
public class MyWsServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        req.setCharacterEncoding("UTF-8");
        resp.setCharacterEncoding("UTF-8");
        com.demo.MyWS mobileCodeWS = new com.demo.MyWS();
        String name = req.getParameter("name");
        String reVal = mobileCodeWS.sayHello(name);
        System.out.println(reVal+"------------");
        resp.getWriter().print(reVal);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

web.xml

    <servlet>
        <servlet-name>myWs</servlet-name>
        <servlet-class>com.gls.ws.MyWsServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>myWs</servlet-name>
        <url-pattern>/myWsServlet</url-pattern>
    </servlet-mapping>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容

  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,565评论 18 399
  • 一、Java基础 1.写出下面代码的执行结果 2.写出下面代码的执行结果 3.写出下面代码的执行结果 (此题需写出...
    joshul阅读 509评论 0 1
  • 一. Java基础部分.................................................
    wy_sure阅读 3,785评论 0 11
  • 前不久,一位朋友在闲聊中提到自己孩子正在某知名英语培训机构学习英语,目前学习自然拼读已经一个多月,孩子在家时不时会...
    正好学拼读阅读 712评论 0 7
  • 文/添一抹岚 芦苇,是我的同桌,在四年级时。 那时,周围同学名字里,或梅、兰,或红、花。当听得芦苇这名字时,我便先...
    添一抹岚阅读 961评论 58 33