WebService是一种跨编程语言、跨操作系统平台的远程调用技术,已存在很多年了,很多接口也都是通过WebService方式来发布的;本系列文章主要介绍Java调用WebService的各种方法,使用在线的中文简体字<->繁体字转换服务(http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx)作为测试服务端,使用其中的简体字转换为繁体字方法toTraditionalChinese来演示WebService的调用。本文主要做些准备工作,方便后续文章中实际的调用。

1、WSDL

为了防止该在线WebService不可用,这里把WSDL贴在这里,方便与代码对照。

http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx?wsdl

  1. This XML file does not appear to have any style information associated with it. The document tree is shown below.
  2. <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://webxml.com.cn/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://webxml.com.cn/">
  3. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  4. <a href="http://www.webxml.com.cn/" target="_blank">WebXml.com.cn</a> <strong>中文简体字<->繁体字转换 WEB 服务</strong><br />此中文简体字<->繁体字转换Web Services请不要用于任何商业目的,若有需要请<a href="http://www.webxml.com.cn/zh_cn/contact_us.aspx" target="_blank">联系我们</a>,欢迎技术交流。 QQ:8409035<br /><strong>使用本站 WEB 服务请注明或链接本站:http://www.webxml.com.cn/ 感谢大家的支持</strong>!<br /><br />&nbsp;
  5. </wsdl:documentation>
  6. <wsdl:types>
  7. <s:schema elementFormDefault="qualified" targetNamespace="http://webxml.com.cn/">
  8. <s:element name="toSimplifiedChinese">
  9. <s:complexType>
  10. <s:sequence>
  11. <s:element minOccurs="0" maxOccurs="1" name="sText" type="s:string"/>
  12. </s:sequence>
  13. </s:complexType>
  14. </s:element>
  15. <s:element name="toSimplifiedChineseResponse">
  16. <s:complexType>
  17. <s:sequence>
  18. <s:element minOccurs="0" maxOccurs="1" name="toSimplifiedChineseResult" type="s:string"/>
  19. </s:sequence>
  20. </s:complexType>
  21. </s:element>
  22. <s:element name="toTraditionalChinese">
  23. <s:complexType>
  24. <s:sequence>
  25. <s:element minOccurs="0" maxOccurs="1" name="sText" type="s:string"/>
  26. </s:sequence>
  27. </s:complexType>
  28. </s:element>
  29. <s:element name="toTraditionalChineseResponse">
  30. <s:complexType>
  31. <s:sequence>
  32. <s:element minOccurs="0" maxOccurs="1" name="toTraditionalChineseResult" type="s:string"/>
  33. </s:sequence>
  34. </s:complexType>
  35. </s:element>
  36. <s:element name="string" nillable="true" type="s:string"/>
  37. </s:schema>
  38. </wsdl:types>
  39. <wsdl:message name="toSimplifiedChineseSoapIn">
  40. <wsdl:part name="parameters" element="tns:toSimplifiedChinese"/>
  41. </wsdl:message>
  42. <wsdl:message name="toSimplifiedChineseSoapOut">
  43. <wsdl:part name="parameters" element="tns:toSimplifiedChineseResponse"/>
  44. </wsdl:message>
  45. <wsdl:message name="toTraditionalChineseSoapIn">
  46. <wsdl:part name="parameters" element="tns:toTraditionalChinese"/>
  47. </wsdl:message>
  48. <wsdl:message name="toTraditionalChineseSoapOut">
  49. <wsdl:part name="parameters" element="tns:toTraditionalChineseResponse"/>
  50. </wsdl:message>
  51. <wsdl:message name="toSimplifiedChineseHttpGetIn">
  52. <wsdl:part name="sText" type="s:string"/>
  53. </wsdl:message>
  54. <wsdl:message name="toSimplifiedChineseHttpGetOut">
  55. <wsdl:part name="Body" element="tns:string"/>
  56. </wsdl:message>
  57. <wsdl:message name="toTraditionalChineseHttpGetIn">
  58. <wsdl:part name="sText" type="s:string"/>
  59. </wsdl:message>
  60. <wsdl:message name="toTraditionalChineseHttpGetOut">
  61. <wsdl:part name="Body" element="tns:string"/>
  62. </wsdl:message>
  63. <wsdl:message name="toSimplifiedChineseHttpPostIn">
  64. <wsdl:part name="sText" type="s:string"/>
  65. </wsdl:message>
  66. <wsdl:message name="toSimplifiedChineseHttpPostOut">
  67. <wsdl:part name="Body" element="tns:string"/>
  68. </wsdl:message>
  69. <wsdl:message name="toTraditionalChineseHttpPostIn">
  70. <wsdl:part name="sText" type="s:string"/>
  71. </wsdl:message>
  72. <wsdl:message name="toTraditionalChineseHttpPostOut">
  73. <wsdl:part name="Body" element="tns:string"/>
  74. </wsdl:message>
  75. <wsdl:portType name="TraditionalSimplifiedWebServiceSoap">
  76. <wsdl:operation name="toSimplifiedChinese">
  77. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  78. <br /><h3>繁体字转换为简体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  79. </wsdl:documentation>
  80. <wsdl:input message="tns:toSimplifiedChineseSoapIn"/>
  81. <wsdl:output message="tns:toSimplifiedChineseSoapOut"/>
  82. </wsdl:operation>
  83. <wsdl:operation name="toTraditionalChinese">
  84. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  85. <br /><h3>简体字转换为繁体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  86. </wsdl:documentation>
  87. <wsdl:input message="tns:toTraditionalChineseSoapIn"/>
  88. <wsdl:output message="tns:toTraditionalChineseSoapOut"/>
  89. </wsdl:operation>
  90. </wsdl:portType>
  91. <wsdl:portType name="TraditionalSimplifiedWebServiceHttpGet">
  92. <wsdl:operation name="toSimplifiedChinese">
  93. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  94. <br /><h3>繁体字转换为简体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  95. </wsdl:documentation>
  96. <wsdl:input message="tns:toSimplifiedChineseHttpGetIn"/>
  97. <wsdl:output message="tns:toSimplifiedChineseHttpGetOut"/>
  98. </wsdl:operation>
  99. <wsdl:operation name="toTraditionalChinese">
  100. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  101. <br /><h3>简体字转换为繁体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  102. </wsdl:documentation>
  103. <wsdl:input message="tns:toTraditionalChineseHttpGetIn"/>
  104. <wsdl:output message="tns:toTraditionalChineseHttpGetOut"/>
  105. </wsdl:operation>
  106. </wsdl:portType>
  107. <wsdl:portType name="TraditionalSimplifiedWebServiceHttpPost">
  108. <wsdl:operation name="toSimplifiedChinese">
  109. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  110. <br /><h3>繁体字转换为简体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  111. </wsdl:documentation>
  112. <wsdl:input message="tns:toSimplifiedChineseHttpPostIn"/>
  113. <wsdl:output message="tns:toSimplifiedChineseHttpPostOut"/>
  114. </wsdl:operation>
  115. <wsdl:operation name="toTraditionalChinese">
  116. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  117. <br /><h3>简体字转换为繁体字</h3><p>输入参数:sText = 字符串; 返回数据:字符串。</p><br />
  118. </wsdl:documentation>
  119. <wsdl:input message="tns:toTraditionalChineseHttpPostIn"/>
  120. <wsdl:output message="tns:toTraditionalChineseHttpPostOut"/>
  121. </wsdl:operation>
  122. </wsdl:portType>
  123. <wsdl:binding name="TraditionalSimplifiedWebServiceSoap" type="tns:TraditionalSimplifiedWebServiceSoap">
  124. <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
  125. <wsdl:operation name="toSimplifiedChinese">
  126. <soap:operation soapAction="http://webxml.com.cn/toSimplifiedChinese" style="document"/>
  127. <wsdl:input>
  128. <soap:body use="literal"/>
  129. </wsdl:input>
  130. <wsdl:output>
  131. <soap:body use="literal"/>
  132. </wsdl:output>
  133. </wsdl:operation>
  134. <wsdl:operation name="toTraditionalChinese">
  135. <soap:operation soapAction="http://webxml.com.cn/toTraditionalChinese" style="document"/>
  136. <wsdl:input>
  137. <soap:body use="literal"/>
  138. </wsdl:input>
  139. <wsdl:output>
  140. <soap:body use="literal"/>
  141. </wsdl:output>
  142. </wsdl:operation>
  143. </wsdl:binding>
  144. <wsdl:binding name="TraditionalSimplifiedWebServiceSoap12" type="tns:TraditionalSimplifiedWebServiceSoap">
  145. <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
  146. <wsdl:operation name="toSimplifiedChinese">
  147. <soap12:operation soapAction="http://webxml.com.cn/toSimplifiedChinese" style="document"/>
  148. <wsdl:input>
  149. <soap12:body use="literal"/>
  150. </wsdl:input>
  151. <wsdl:output>
  152. <soap12:body use="literal"/>
  153. </wsdl:output>
  154. </wsdl:operation>
  155. <wsdl:operation name="toTraditionalChinese">
  156. <soap12:operation soapAction="http://webxml.com.cn/toTraditionalChinese" style="document"/>
  157. <wsdl:input>
  158. <soap12:body use="literal"/>
  159. </wsdl:input>
  160. <wsdl:output>
  161. <soap12:body use="literal"/>
  162. </wsdl:output>
  163. </wsdl:operation>
  164. </wsdl:binding>
  165. <wsdl:binding name="TraditionalSimplifiedWebServiceHttpGet" type="tns:TraditionalSimplifiedWebServiceHttpGet">
  166. <http:binding verb="GET"/>
  167. <wsdl:operation name="toSimplifiedChinese">
  168. <http:operation location="/toSimplifiedChinese"/>
  169. <wsdl:input>
  170. <http:urlEncoded/>
  171. </wsdl:input>
  172. <wsdl:output>
  173. <mime:mimeXml part="Body"/>
  174. </wsdl:output>
  175. </wsdl:operation>
  176. <wsdl:operation name="toTraditionalChinese">
  177. <http:operation location="/toTraditionalChinese"/>
  178. <wsdl:input>
  179. <http:urlEncoded/>
  180. </wsdl:input>
  181. <wsdl:output>
  182. <mime:mimeXml part="Body"/>
  183. </wsdl:output>
  184. </wsdl:operation>
  185. </wsdl:binding>
  186. <wsdl:binding name="TraditionalSimplifiedWebServiceHttpPost" type="tns:TraditionalSimplifiedWebServiceHttpPost">
  187. <http:binding verb="POST"/>
  188. <wsdl:operation name="toSimplifiedChinese">
  189. <http:operation location="/toSimplifiedChinese"/>
  190. <wsdl:input>
  191. <mime:content type="application/x-www-form-urlencoded"/>
  192. </wsdl:input>
  193. <wsdl:output>
  194. <mime:mimeXml part="Body"/>
  195. </wsdl:output>
  196. </wsdl:operation>
  197. <wsdl:operation name="toTraditionalChinese">
  198. <http:operation location="/toTraditionalChinese"/>
  199. <wsdl:input>
  200. <mime:content type="application/x-www-form-urlencoded"/>
  201. </wsdl:input>
  202. <wsdl:output>
  203. <mime:mimeXml part="Body"/>
  204. </wsdl:output>
  205. </wsdl:operation>
  206. </wsdl:binding>
  207. <wsdl:service name="TraditionalSimplifiedWebService">
  208. <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  209. <a href="http://www.webxml.com.cn/" target="_blank">WebXml.com.cn</a> <strong>中文简体字<->繁体字转换 WEB 服务</strong><br />此中文简体字<->繁体字转换Web Services请不要用于任何商业目的,若有需要请<a href="http://www.webxml.com.cn/zh_cn/contact_us.aspx" target="_blank">联系我们</a>,欢迎技术交流。 QQ:8409035<br /><strong>使用本站 WEB 服务请注明或链接本站:http://www.webxml.com.cn/ 感谢大家的支持</strong>!<br /><br />&nbsp;
  210. </wsdl:documentation>
  211. <wsdl:port name="TraditionalSimplifiedWebServiceSoap" binding="tns:TraditionalSimplifiedWebServiceSoap">
  212. <soap:address location="http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx"/>
  213. </wsdl:port>
  214. <wsdl:port name="TraditionalSimplifiedWebServiceSoap12" binding="tns:TraditionalSimplifiedWebServiceSoap12">
  215. <soap12:address location="http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx"/>
  216. </wsdl:port>
  217. <wsdl:port name="TraditionalSimplifiedWebServiceHttpGet" binding="tns:TraditionalSimplifiedWebServiceHttpGet">
  218. <http:address location="http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx"/>
  219. </wsdl:port>
  220. <wsdl:port name="TraditionalSimplifiedWebServiceHttpPost" binding="tns:TraditionalSimplifiedWebServiceHttpPost">
  221. <http:address location="http://www.webxml.com.cn/WebServices/TraditionalSimplifiedWebService.asmx"/>
  222. </wsdl:port>
  223. </wsdl:service>
  224. </wsdl:definitions>

2、用SoapUI生成Soap消息

该在线WebService同时实现Soap1.1和Soap1.2,这里分别生成消息。

2.1、Soap1.1

查询xml

查看Raw

2.1、Soap1.2

查看xml

查看Raw

3、本地WebService服务

由于我们用的在线WebService服务端为.NET实现的,而我们客户端是JAVA,如果是RPC方式调用则无法调用;这里创建一个本地的JAX-WS实现的WebService,用于这个系列文章中RPC方式的调用。RPC已经过时,但为了技术的完整性,也记录下。

3.1、接口类

  1. package com.inspur.zsyw.ws;
  2.  
  3. import javax.jws.WebParam;
  4. import javax.jws.WebService;
  5.  
  6. @WebService
    @SOAPBinding(style = SOAPBinding.Style.RPC)
  7. public interface ITestService {
  8. String hello(@WebParam(name = "name") String name);
  9. }

3.1、实现类

  1. package com.inspur.zsyw.ws.impl;
  2.  
  3. import com.inspur.zsyw.ws.ITestService;
  4.  
  5. @javax.jws.WebService(endpointInterface="com.inspur.zsyw.ws.ITestService", targetNamespace = "http://ws.zsyw.inspur.com/", serviceName = "TestService")
  6. public class TestServiceImpl implements ITestService {
  7. @Override
  8. public String hello(String name) {
  9. return "hello," + name;
  10. }
  11. }

3.3、本地WSDL

http://10.40.103.48:9006/zsywservice/TestService?wsdl

  1. This XML file does not appear to have any style information associated with it. The document tree is shown below.
  2. <!--
  3. Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5.
  4. -->
  5. <!--
  6. Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5.
  7. -->
  8. <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://ws.zsyw.inspur.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://ws.zsyw.inspur.com/" name="TestService">
  9. <types/>
  10. <message name="hello">
  11. <part name="name" type="xsd:string"/>
  12. </message>
  13. <message name="helloResponse">
  14. <part name="return" type="xsd:string"/>
  15. </message>
  16. <portType name="ITestService">
  17. <operation name="hello">
  18. <input message="tns:hello"/>
  19. <output message="tns:helloResponse"/>
  20. </operation>
  21. </portType>
  22. <binding name="TestServiceImplPortBinding" type="tns:ITestService">
  23. <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
  24. <operation name="hello">
  25. <soap:operation soapAction=""/>
  26. <input>
  27. <soap:body use="literal" namespace="http://ws.zsyw.inspur.com/"/>
  28. </input>
  29. <output>
  30. <soap:body use="literal" namespace="http://ws.zsyw.inspur.com/"/>
  31. </output>
  32. </operation>
  33. </binding>
  34. <service name="TestService">
  35. <port name="TestServiceImplPort" binding="tns:TestServiceImplPortBinding">
  36. <soap:address location="http://10.40.103.48:9006/zsywservice/TestService"/>
  37. </port>
  38. </service>
  39. </definitions>

4、调用

本文主要介绍一些准备工作,具体调用参见下列文章:

Java调用WebService方法总结(2)--JAX-WS调用WebService

Java调用WebService方法总结(3)--wsimport调用WebService

Java调用WebService方法总结(4)--Axis调用WebService

Java调用WebService方法总结(5)--Axis2调用WebService

Java调用WebService方法总结(6)--XFire调用WebService

Java调用WebService方法总结(7)--CXF调用WebService

Java调用WebService方法总结(8)--soap.jar调用WebService

Java调用WebService方法总结(9,end)--Http方式调用WebService

Java调用WebService方法总结(1)--准备工作的更多相关文章

  1. Java调用WebService方法总结(9,end)--Http方式调用WebService

    Http方式调用WebService,直接发送soap消息到服务端,然后自己解析服务端返回的结果,这种方式比较简单粗暴,也很好用:soap消息可以通过SoapUI来生成,也很方便.文中所使用到的软件版 ...

  2. Java调用WebService方法总结(8)--soap.jar调用WebService

    Apache的soap.jar是一种历史很久远的WebService技术,大概是2001年左右的技术,所需soap.jar可以在http://archive.apache.org/dist/ws/so ...

  3. Java调用WebService方法总结(7)--CXF调用WebService

    CXF = Celtix + XFire,继承了Celtix和XFire两大开源项目的精华,是一个开源的,全功能的,容易使用的WebService框架.文中所使用到的软件版本:Java 1.8.0_1 ...

  4. Java调用WebService方法总结(6)--XFire调用WebService

    XFire是codeHaus组织提供的一个WebService开源框架,目前已被Apache的CXF所取代,已很少有人用了,这里简单记录下其调用WebService使用方法.官网现已不提供下载,可以到 ...

  5. Java调用WebService方法总结(5)--Axis2调用WebService

    Axis2是新一点Axis,基于新的体系结构进行了全新编写,有更强的灵活性并可扩展到新的体系结构.文中demo所使用到的软件版本:Java 1.8.0_191.Axis2 1.7.9. 1.准备 参考 ...

  6. Java调用WebService方法总结(4)--Axis调用WebService

    Axis是比较常用的WebService框架,该项目在2006实现了最终版,后面就没有更新了.文中demo所使用到的软件版本:Java 1.8.0_191.Axis 1.4. 1.准备 参考Java调 ...

  7. Java调用WebService方法总结(3)--wsimport调用WebService

    wsimport是JDK自带的把WSDL转成Java的工具,可以很方便的生成调用WebService的代码.文中所使用到的软件版本:Java 1.8.0_191. 1.准备 参考Java调用WebSe ...

  8. Java调用WebService方法总结(2)--JAX-WS调用WebService

    用JAX-WS(Java API for XML Web Services)调用WebService不需要引入其他框架,都是JDK自带的:文中所使用到的软件版本:Java 1.8.0_191.Dom4 ...

  9. java调用webservice方法

    由于项目的历史原因,webservice服务端是乙方公司开发的,我们自己开发的系统需要去调用乙方公司的webservice接口.前面用了网上提供的一种方法(非生成代理类),怎么也调用不成功(也许是因为 ...

随机推荐

  1. hotspot编译

    "AA=="1",==", /usr/bin/make -s VERBOSE="-s" LOG_LEVEL="warn" ...

  2. SQLSERVER教师学生成绩课程四表联合各种SQL考题

    --CREATE DATABASE EXAM_1 --GO USE EXAM_1 --判断并删除表 IF OBJECT_ID('Scores') IS NOT NULL DROP TABLE Scor ...

  3. Spring Boot方式的Dubbo项目

    项目依赖 需要org.apache.dubbo.dubbo-dependencies-bom, 需要org.apache.dubbo.dubbo-spring-boot-starter, 当前版本有2 ...

  4. DOM 是什么,Document Object Model,文档对像模型

    #为什么会想起来写这个 在写dynaTrace Ajax的时候,写到这个是个前端性能测试工具,这个工具能记录请求时间,前端页面渲染时间,DOM方法执行时间,以及JavaScript代码解析和执行时间. ...

  5. SpringMVC @SessionAttribute 使用说明

    百度搜索 @SessionAttribute 这一句绝大多数文章中不存在: 如果Model中没有name参数,而session中存在一个name参数,那么SessionAttribute会讲这个参数塞 ...

  6. Python3基础 yield send 变量名= yield i

             Python : 3.7.3          OS : Ubuntu 18.04.2 LTS         IDE : pycharm-community-2019.1.3    ...

  7. Docker安装ES和Kibana

    1.ES安装 1.下载ES镜像问题 docker pull elasticsearch 2.运行ES docker run -it --name elasticsearch -d -p 9200:92 ...

  8. Extjs与Vue技术优劣势比较

    此技术只变更PLM的表单化的页面显示风格,不涉及不影响整个现有平台的架构和蓝图

  9. Python高级笔记(十)闭包

    1. 闭包 #!/usr/bin/python # -*- encoding=utf- -*- def test(number): # 在函数里面再定义一个函数,并且这个函数用到外边函数的变量,那么将 ...

  10. kubernetes之Controller Manager原理分析

    Controller Manager作为集群内部的管理控制中心,负责集群内的Node.Pod副本.服务端点(Endpoint).命名空间(Namespace).服务账号(ServiceAccount) ...