zoukankan      html  css  js  c++  java
  • WebService

    采用RPC的方式参考博文:Client调用(Axis2-RPC)。

    采用的免费webservice接口:

    http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl
    1
    客户端调用代码如下:

    package com.web.hh.constroller;

    import java.util.Iterator;

    import org.apache.axiom.om.OMAbstractFactory;
    import org.apache.axiom.om.OMElement;
    import org.apache.axiom.om.OMFactory;
    import org.apache.axiom.om.OMNamespace;
    import org.apache.axiom.soap.SOAP11Constants;
    import org.apache.axis2.AxisFault;
    import org.apache.axis2.Constants;
    import org.apache.axis2.addressing.EndpointReference;
    import org.apache.axis2.client.Options;
    import org.apache.axis2.client.ServiceClient;

    public class ClientWeather {
    /*
    * 第二种方式,手动调用
    */
    public static void main(String[] args) throws AxisFault {
    ServiceClient serviceClient = new ServiceClient();
    Options option = new Options();
    option.setSoapVersionURI(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI);
    option.setTransportInProtocol(Constants.TRANSPORT_HTTP);

    // 值为targetNamespace+methodName
    option.setAction("http://WebXml.com.cn/getWeather");

    EndpointReference epfs = new EndpointReference("http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl");
    option.setTo(epfs);
    serviceClient.setOptions(option);

    OMFactory fac = OMAbstractFactory.getOMFactory();
    OMNamespace namespace = fac.createOMNamespace("http://WebXml.com.cn/", "");
    OMElement element = fac.createOMElement("getWeather", namespace);
    OMElement theCityCode = fac.createOMElement("theCityCode ", namespace);
    theCityCode.setText("北京");
    element.addChild(theCityCode);
    OMElement theUserID = fac.createOMElement("theUserID ", namespace);
    theUserID.setText("");
    element.addChild(theUserID);

    OMElement result = serviceClient.sendReceive(element);
    System.out.println(result);
    System.out.println("****************************************************************************************************************");
    Iterator in = result.getChildrenWithLocalName("getWeatherResult");
    while(in.hasNext()){
    OMElement om = (OMElement)in.next();
    Iterator in2 = om.getChildElements();
    while(in2.hasNext()){
    // System.out.println(in2.next().toString());
    System.out.println(((OMElement)in2.next()).getText());
    }
    }
    }
    }

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    输出结果如下:

     

    上面服务是不需要验证的,如果需要验证,参考代码如下:

    /**
    * 为SOAP Header构造验证信息,
    * 如果你的服务端是没有验证的,那么你不用在Header中增加验证信息
    *
    * @param serviceClient
    * @param tns 命名空间
    * @param user
    * @param passwrod
    */
    public void addValidation(ServiceClient serviceClient, String tns , String user, String passwrod) {
    OMFactory fac = OMAbstractFactory.getOMFactory();
    OMNamespace omNs = fac.createOMNamespace(tns, "nsl");
    OMElement header = fac.createOMElement("AuthenticationToken", omNs);
    OMElement ome_user = fac.createOMElement("Username", omNs);
    OMElement ome_pass = fac.createOMElement("Password", omNs);

    ome_user.setText(user);
    ome_pass.setText(passwrod);

    header.addChild(ome_user);
    header.addChild(ome_pass);

    serviceClient.addHeader(header);
    }
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    网友建议贴出相关jar的pom文件,因为时间比较久,pom文件中依赖不太确定,遇到具体问题望再具体解决,也可留言。

    下面是相关的pom 依赖:

    //版本号
    <axis2.version>1.6.2</axis2.version>
    <jaxws.version>2.2.10</jaxws.version>
    <policy.version>2.3.1</policy.version>
    <gmbal.version>3.0.0-b023</gmbal.version>
    <!-- axis2 - webservice -->
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-aar-maven-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-adb</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-adb-codegen</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-ant-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-clustering</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-codegen</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-integration</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-java2wsdl</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-java2wsdl-maven-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-jaxbri</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-jaxws</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-jaxws-integration</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-jibx</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-json</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-kernel</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-mar-maven-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-metadata</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-mtompolicy</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-repo-maven-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-resource-bundle</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-saaj</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-soapmonitor-servlet</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-spring</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-transport-http</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-transport-local</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>axis2-xmlbeans</artifactId>
    <version>${axis2.version}</version>
    </dependency>
    <dependency>
    <groupId>org.apache.axis2</groupId>
    <artifactId>org.apache.axis2.osgi</artifactId>
    <version>${axis2.version}</version>
    </dependency>

    <!-- jax-ws -->
    <dependency>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>jaxws-rt</artifactId>
    <version>${jaxws.version}</version>
    </dependency>
    <dependency>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>jaxws-tools</artifactId>
    <version>${jaxws.version}</version>
    </dependency>
    <dependency>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>rt</artifactId>
    <version>${jaxws.version}</version>
    </dependency>
    <dependency>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>policy</artifactId>
    <version>${policy.version}</version>
    </dependency>
    <dependency>
    <groupId>org.glassfish.gmbal</groupId>
    <artifactId>gmbal-api-only</artifactId>
    <version>${gmbal.version}</version>
    </dependency>

    原文链接:https://blog.csdn.net/J080624/article/details/78424262

    -----------------------------------------------------------------------------------------------------

  • 相关阅读:
    NumPy 基本语法汇总
    python自动化操作——excel刷新数据并截图发送微信
    datefram学习(持续更新)
    python——imap邮件自动下载附件和邮件正文
    ERP笔记1系统环境
    ERP笔记2善用SVN对系统环境进行配置和组织
    ERP笔记4SVN目录的权限分配
    ERP笔记3数据库的版本化
    DBCC CHECKCATALOG 错误
    非常棒的放礼花的源程序
  • 原文地址:https://www.cnblogs.com/UUUz/p/12197831.html
Copyright © 2011-2022 走看看