- 浏览: 556061 次
- 性别:
文章分类
- 全部博客 (337)
- WEB前端@HTML (4)
- WEB前端@CSS (5)
- WEB前端@javascript (31)
- WEB前端@DHTML (8)
- WEB前端@jQuery (3)
- WEB前端@Flex4 (19)
- WEB前端@BootStrap3 (21)
- 数据交换@JSON (1)
- 模板标签@JSTL (1)
- 模板标签@Thymeleaf (1)
- 模板标签@XSL-FO (3)
- WEB后台@JavaSE (75)
- WEB后台@JAX-WS (27)
- WEB后台@HttpClient (0)
- WEB后台@SSO (2)
- 框架@Spring3 (3)
- 框架@spring_MVC (8)
- 框架@Hibernate (26)
- 框架@play framework (18)
- 框架@sl4j (4)
- 数据库@ (2)
- 数据库@JDBC (0)
- 服务器@Linux (14)
- 服务器@Tomcat (2)
- 第三方jar@dom4j (1)
- 第三方jar@POI (2)
- 第三方jar@CXF (5)
- 项目管理@Maven (22)
- 项目管理@SVN (1)
- 缓存管理@ehcache (1)
- 系统设计@设计模式 (10)
- 单元测试@JunitTest (1)
- 开发工具 (3)
- BUG收录 (1)
- 学习之路 (6)
- 面试之道 (1)
- 我的项目 (2)
最新评论
-
superich2008:
logback配置文件的改动会导致应用重新加载,多改动几次后就 ...
Chapter 3: Logback configuration -
chenzhihui:
不是可以在log4j中配置以控制台或者文件方式保存日志的?
play记录日志 -
smilease:
很棒,正缺这个,非常感谢
bootstrap3-typeahead 自动补全 -
guangling13345:
[size=x-small][/size]
二级联动菜单 -
jacksondesign:
有,和YAML的格式有关,不知道有没有什么好的YAML格式的验 ...
(四)play之yabe项目【页面】
http://localhost:8888/numberService?wsdl
type节点分析
type用来定义访问的类型,即方法入参的个数,类型和返回值的类型
http://localhost:8888/numberService?xsd=1
message节点分析
message节点用来传递消息---SOAP simple object access protocol
每个方法都有入参和返回值,这些数据就是通过message来进行传递的
客户端通过message节点传递参数到服务端,服务端执行方法,返回值又通过message节点来传递数据。一个方法至少对于2个message节点!
portType节点分析
portType指名对外暴露的接口名称
operation 指定被访问的方法
input 指定方法的入参(指定入参对应的message)
output 指定方法的返回值(指定返回值对应的message)
binding节点分析
bingding节点主要用于指定SOAP消息以何种方式/样式进行传递
service节点分析
结合前面的SOAP消息传输、接口和方法(参数和返回值)的说明、SOAP消息(message)来提供一个服务
通过该服务即可调用webservice对外提供的方法
SOAP
SOAP通过"信封"传递消息
信封:携带方法的入参
信封:携带方法的返回值
定制SOAP中的参数名
通过注解详细说明wsdl中的参数名称,否则默认使用args0,args1...来表示形参
服务接口中使用注解定义如下:
通过注解标注了参数后,SOAP中的参数名就是指定的名称了
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> <message name="plus"> <part name="parameters" element="tns:plus"/> </message> <message name="plusResponse"> <part name="parameters" element="tns:plusResponse"/> </message> <message name="minus"> <part name="parameters" element="tns:minus"/> </message> <message name="minusResponse"> <part name="parameters" element="tns:minusResponse"/> </message> <portType name="IMyService"> <operation name="plus"> <input message="tns:plus"/> <output message="tns:plusResponse"/> </operation> <operation name="minus"> <input message="tns:minus"/> <output message="tns:minusResponse"/> </operation> </portType> <binding name="MyServiceImplPortBinding" type="tns:IMyService"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> <operation name="plus"> <soap:operation soapAction=""/> <input> <soap:body use="literal"/> </input> <output> <soap:body use="literal"/> </output> </operation> <operation name="minus"> <soap:operation soapAction=""/> <input> <soap:body use="literal"/> </input> <output> <soap:body use="literal"/> </output> </operation> </binding> <service name="MyServiceImplService"> <port name="MyServiceImplPort" binding="tns:MyServiceImplPortBinding"> <soap:address location="http://localhost:8888/numberService"/> </port> </service> </definitions>
type节点分析
type用来定义访问的类型,即方法入参的个数,类型和返回值的类型
<definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> </definitions>
http://localhost:8888/numberService?xsd=1
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <xs:schema version="1.0" targetNamespace="http://service.hqh.com/"> <!--方法A的参数--> <xs:element name="minus" type="tns:minus"/> <!--方法A的返回值--> <xs:element name="minusResponse" type="tns:minusResponse"/> <!--方法B的参数--> <xs:element name="plus" type="tns:plus"/> <!--方法B的返回值--> <xs:element name="plusResponse" type="tns:plusResponse"/> <!--方法A的参数信息--> <xs:complexType name="minus"> <xs:sequence> <xs:element name="arg0" type="xs:int"/> <xs:element name="arg1" type="xs:int"/> </xs:sequence> <!--方法A的返回值信息--> </xs:complexType> <xs:complexType name="minusResponse"> <xs:sequence> <xs:element name="return" type="xs:int"/> </xs:sequence> </xs:complexType> <!--方法B的参数信息--> <xs:complexType name="plus"> <xs:sequence> <xs:element name="arg0" type="xs:int"/> <xs:element name="arg1" type="xs:int"/> </xs:sequence> </xs:complexType> <!--方法B的返回值信息--> <xs:complexType name="plusResponse"> <xs:sequence> <xs:element name="return" type="xs:int"/> </xs:sequence> </xs:complexType> </xs:schema>
message节点分析
message节点用来传递消息---SOAP simple object access protocol
每个方法都有入参和返回值,这些数据就是通过message来进行传递的
客户端通过message节点传递参数到服务端,服务端执行方法,返回值又通过message节点来传递数据。一个方法至少对于2个message节点!
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> <!--传递plus()的入参--> <message name="plus"> <part name="parameters" element="tns:plus"/> </message> <!--传递plus()返回的消息--> <message name="plusResponse"> <part name="parameters" element="tns:plusResponse"/> </message> <!--传递minus()的入参--> <message name="minus"> <part name="parameters" element="tns:minus"/> </message> <!--传递minus()返回的消息--> <message name="minusResponse"> <part name="parameters" element="tns:minusResponse"/> </message> </definitions>
portType节点分析
portType指名对外暴露的接口名称
operation 指定被访问的方法
input 指定方法的入参(指定入参对应的message)
output 指定方法的返回值(指定返回值对应的message)
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> <message name="plus"> <part name="parameters" element="tns:plus"/> </message> <message name="plusResponse"> <part name="parameters" element="tns:plusResponse"/> </message> <message name="minus"> <part name="parameters" element="tns:minus"/> </message> <message name="minusResponse"> <part name="parameters" element="tns:minusResponse"/> </message> <!-- 服务器端的接口 --> <portType name="IMyService"> <!--接口中的方法--> <operation name="plus"> <!--方法的入参通过name="tns:plus"的message传递--> <input message="tns:plus"/> <!--方法的返回值通过name="tns:plusResponse"的message传递--> <output message="tns:plusResponse"/> </operation> <operation name="minus"> <input message="tns:minus"/> <output message="tns:minusResponse"/> </operation> </portType> </definitions>
binding节点分析
bingding节点主要用于指定SOAP消息以何种方式/样式进行传递
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> <message name="plus"> <part name="parameters" element="tns:plus"/> </message> <message name="plusResponse"> <part name="parameters" element="tns:plusResponse"/> </message> <message name="minus"> <part name="parameters" element="tns:minus"/> </message> <message name="minusResponse"> <part name="parameters" element="tns:minusResponse"/> </message> <portType name="IMyService"> <operation name="plus"> <input message="tns:plus"/> <output message="tns:plusResponse"/> </operation> <operation name="minus"> <input message="tns:minus"/> <output message="tns:minusResponse"/> </operation> </portType> <!-- 指定SOAP消息传递所使用的格式 --> <binding name="MyServiceImplPortBinding" type="tns:IMyService"> <!-- SOAP使用document的风格进行传递(原来使用RBC的风格) --> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> <!-- plus()的消息传递 --> <operation name="plus"> <soap:operation soapAction=""/> <!--输入消息通过literal方式进行传递(jdk1.6之前使用SOAPMessage encode方式传递)--> <input> <soap:body use="literal"/> </input> <!--输出消息通过literal--> <output> <soap:body use="literal"/> </output> </operation> <!-- minus()的消息传递 --> <operation name="minus"> <soap:operation soapAction=""/> <!--输入消息通过literal方式进行传递 --> <input> <soap:body use="literal"/> </input> <!--输出消息通过literal--> <output> <soap:body use="literal"/> </output> </operation> </binding> </definitions>
service节点分析
结合前面的SOAP消息传输、接口和方法(参数和返回值)的说明、SOAP消息(message)来提供一个服务
通过该服务即可调用webservice对外提供的方法
<?xml version="1.0"?> <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.6 in JDK 6. --> <definitions targetNamespace="http://service.hqh.com/" name="MyServiceImplService"> <types> <xsd:schema> <xsd:import namespace="http://service.hqh.com/" schemaLocation="http://localhost:8888/numberService?xsd=1"/> </xsd:schema> </types> <message name="plus"> <part name="parameters" element="tns:plus"/> </message> <message name="plusResponse"> <part name="parameters" element="tns:plusResponse"/> </message> <message name="minus"> <part name="parameters" element="tns:minus"/> </message> <message name="minusResponse"> <part name="parameters" element="tns:minusResponse"/> </message> <portType name="IMyService"> <operation name="plus"> <input message="tns:plus"/> <output message="tns:plusResponse"/> </operation> <operation name="minus"> <input message="tns:minus"/> <output message="tns:minusResponse"/> </operation> </portType> <binding name="MyServiceImplPortBinding" type="tns:IMyService"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> <operation name="plus"> <soap:operation soapAction=""/> <input> <soap:body use="literal"/> </input> <output> <soap:body use="literal"/> </output> </operation> <operation name="minus"> <soap:operation soapAction=""/> <input> <soap:body use="literal"/> </input> <output> <soap:body use="literal"/> </output> </operation> </binding> <!--指定服务的名称(同definitions的name属性)--> <service name="MyServiceImplService"> <!--prot的name属性指定的端口(一个方法)将返回服务接口的一个实现,该实现基于name="MyServiceImplPortBinding"的SOAP消息定义进行创建--> <port name="MyServiceImplPort" binding="tns:MyServiceImplPortBinding"> <!--指定服务对外发布的地址--> <soap:address location="http://localhost:8888/numberService"/> </port> </service> </definitions>
SOAP
SOAP通过"信封"传递消息
信封:携带方法的入参
<?xml version="1.0"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" <!--对外发布的服务所在的包(逆序)--> xmlns:q0="http://service.hqh.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <q0:plus> <arg0>1</arg0> <arg1>2</arg1> </q0:plus> </soapenv:Body> </soapenv:Envelope>
信封:携带方法的返回值
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Body> <ns2:plusResponse xmlns:ns2="http://service.hqh.com/"> <return>3</return> </ns2:plusResponse> </S:Body> </S:Envelope>
定制SOAP中的参数名
通过注解详细说明wsdl中的参数名称,否则默认使用args0,args1...来表示形参
服务接口中使用注解定义如下:
@WebService public interface IMyService { @WebResult(name="plusResult") public int plus(@WebParam(name="a")int a,@WebParam(name="b")int b); @WebResult(name="minusResult") public int minus(@WebParam(name="a")int a,@WebParam(name="b")int b); }
通过注解标注了参数后,SOAP中的参数名就是指定的名称了
<?xml version="1.0"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:q0="http://service.hqh.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <q0:plus> <a>5</a> <!--信封中参数名称为注解所标注的名称--> <b>7</b> <!--信封中参数名称为注解所标注的名称--> </q0:plus> </soapenv:Body> </soapenv:Envelope>
发表评论
-
实际应用-使用xsd定义Model对象
2014-02-27 02:24 1317使用schema定义Model 好 ... -
XJC 将schema转换为java类
2013-08-28 09:55 1857使用xjc(xml java change)将schema转 ... -
Webservice中获取Servlet的相关对象
2013-08-15 17:44 2884第一种方式: 通过注入WebServiceContex ... -
JAX与spring的无缝集成---增加Handler和Exception(二)
2013-08-15 16:00 1998客户端也使用spring集成JAX-WS。但是有一个问题需 ... -
Exception处理:服务端返回对象与客户端类型不一致XXX cannot be cast to XXX
2013-08-15 13:52 2613描述: 服务端向客户端返回数据时,发生类型转 ... -
JAX与spring的无缝集成(一)
2013-08-13 13:45 6625JAX-WS与spring集成有几 ... -
使用契约优先---重要注意事项
2013-08-11 22:23 1015使用契约优先编写schema和wsdl文件时,一般都是在ws ... -
通过HEADER传递信息-做权限控制
2013-08-08 18:11 2023通过HEADER而不是BODY传递“LICENSE” ... -
webservice传递二进制数据(文件)
2013-08-08 16:14 2300将二进制数据放到Attachment中进行传递,而不是放到 ... -
发布webservice到tomcat
2013-08-07 09:39 3052目标: 基于契约优先的webservice功能开发 ... -
基于契约优先的隐式头信息处理
2013-08-03 20:05 1230<?xml version="1.0&qu ... -
基于契约优先来编写webservice
2013-08-03 18:40 1222开发流程: 1.先写schema ... -
通过Handler添加HEADER
2013-08-03 14:05 2045LogicHandler 只能获取SOAPBody的信息 ... -
SOAP异常处理
2013-08-03 14:00 1009接口 package com.hqh.soap; imp ... -
深入SOAP发送消息的过程(SAAJ)
2013-07-28 18:54 2105SOAP结构体 SOAPMessage SOAPPa ... -
使用Transformer更新XML
2013-07-27 14:46 2783package com.hqh.stax; impo ... -
使用XMLStreamWriter写XML
2013-07-27 14:10 4028package com.hqh.stax; im ... -
使用java提供的XPATH处理xml
2013-07-27 13:10 982books.xml <?xml version=&q ... -
使用Stax处理XML
2013-07-27 10:57 1284java提供的XML处理 Stax处 ... -
使用JAXB完成XML与java对象的转换
2013-07-27 10:05 2155SAX 处理超大xml时使用 do ...
相关推荐
**JAX-RS与JAX-WS详解:** 1. **JAX-RS**(Java API for RESTful Web Services)是Java平台上的REST(Representational State Transfer)风格Web服务的标准。REST是一种轻量级的架构风格,它基于HTTP协议,利用URL...
**JAX-WS规范详解** Java API for XML Web Services(JAX-WS)是Java平台上的一个标准,用于创建Web服务和客户端。它提供了一种简单、类型安全的方式来构建和消费基于SOAP的消息传递应用程序,是Java世界中实现Web...
JAX-WS可以自动生成WSDL文件。 - **SOAP绑定**:将SEI的方法映射到SOAP消息。 - **SOAP消息处理**:包括SOAP消息的生成和解析,以及错误处理。 - **端点发布**:将Java服务实例发布为Web服务,使得客户端可以通过...
### JAX-WS 2.2 用户指南知识点详解 #### 概览 JAX-WS (Java API for XML Web Services) 是 Java 平台上用于开发和实现 Web 服务的官方标准之一。本用户指南详细介绍了 JAX-WS 2.2 版本的功能、编程模型以及如何...
- **添加注解**:在服务接口和实现类上添加必要的JAX-WS注解,例如`@WebService`和`@WebMethod`等,用以指导工具生成相应的WSDL文件和其他元数据。 3. **示例:订单处理Web服务** - **服务接口定义**:创建一个...
**Java JAX-WS 步骤详解** Java JAX-WS (Java API for XML Web Services) 是一种标准的 Java 框架,用于创建和消费 Web 服务。它简化了 Web 服务的开发过程,无需复杂的配置文件,而是通过注解来定义服务接口和服务...
**JAX-WS Web服务详解** Java API for XML Web Services(JAX-WS)是Java平台上用于构建和消费Web服务的标准API。它基于SOAP(Simple Object Access Protocol),用于创建面向服务架构(SOA)中的服务。JAX-WS是...
**JAX-WS 2.2 Jar包详解** JAX-WS(Java API for XML Web Services)是Java平台上用于创建和消费Web服务的标准API。它提供了面向服务架构(SOA)的模型,使得开发人员能够方便地在Java环境中构建、部署和使用Web...
**JAX-WS开发Web服务示例详解** Java API for XML Web Services (JAX-WS) 是Java平台上的一个标准,用于开发基于SOAP协议的Web服务。它简化了Web服务的创建、部署和消费,使得开发者可以使用面向对象的方式来处理...
### JAX-WS 2.0 规范详解 #### 一、概述 JAX-WS(Java API for XML Web Services)2.0 是一种用于创建和访问 Web 服务的标准 Java API,它允许开发人员使用 Java 编写 Web 服务,并以 XML 的形式进行数据交换。JAX...
**JAX-WS实现Web Service发布的详解** JAX-WS(Java API for XML Web Services)是Java平台上用于创建Web服务的标准API,它简化了Web服务的开发、部署和消费过程。JAX-WS允许开发者使用Java语言来定义和实现Web服务...
**Jax-WS详解与配置指南** Jax-WS(Java API for XML Web Services)是Java平台上的一个标准,用于创建和消费Web服务。它提供了一种基于SOAP(Simple Object Access Protocol)的、类型安全的方式来处理Web服务。...
**JAX-WS详解** Java API for XML Web Services (JAX-WS) 是Java平台上的一个标准组件,用于构建和消费Web服务。它提供了一种简单、类型安全的方式来创建和访问基于SOAP的消息传递应用程序。本教程将深入探讨JAX-WS...
1. **SOAP与WSDL**:JAX-WS是基于SOAP的,SOAP是一种XML格式的消息传递协议,用于在Web服务之间交换结构化信息。WSDL(Web Services Description Language)是用来定义服务接口的XML格式,描述了服务的位置、操作...
**JAX-WS服务端所需完整Jar包详解** Java API for XML Web Services(JAX-WS)是Java平台上用于创建Web服务的标准API,它简化了服务端开发过程,提供了基于SOAP的消息交换支持。本篇文章将深入探讨JAX-WS服务端开发...
**JAX-WS: Java API for XML Web Services详解** JAX-WS,全称为Java API for XML Web Services,是Java平台上的一个标准组件,用于构建和消费基于Web服务的应用程序。它提供了一种简单且直观的方式来创建、部署和...
### JAX-WS 2.2 规范详解 #### 一、概述 JAX-WS(Java API for XML-based Web Services)2.2规范是由JCP(Java Community Process)组织发布的一个重要的技术文档,该文档对JAX-WS 2.2版本进行了详尽的说明。对于...
### JAX-WS 教程:服务器端与客户端详解 #### 概览 JAX-WS(Java API for XML Web Services)是Java平台标准的一部分,用于开发和部署Web服务。它简化了Web服务的开发过程,允许将普通的Java对象(POJO)轻松地...
【标题】:“基于Jax-ws的WebService”详解 在Web服务的世界中,JAX-WS(Java API for XML Web Services)是Java平台上的标准,用于创建和消费SOAP(Simple Object Access Protocol)服务。它提供了从Java类到SOAP...
2. **服务接口定义**:使用JAX-WS,你可以通过Java注解来定义服务接口,如`@WebService`,这将自动生成服务的WSDL(Web Service Description Language)文件。 3. **服务实现**:实现服务接口,提供具体的服务逻辑...