WSDL
|
Java
|
Message input1...n |
|
Opteraton |
Method |
Message output |
Return value |
Fault Message |
Exception |
Service |
Service Class |
PortType |
PortType Class |
Binding
- define message format and protocol details
Port
- define interface exposed by webservice.
Operation type
- 4 types: one-way, request-response, solicit response, notification
From
|
To
|
<Message> name |
<PortType> =>Operation => Input/Output message attribute |
<Message> name |
<Binding> => Input/Output => header/body message attribute |
<PortyType> =>Operation => input name |
<Binding> =>Operation => input name |
<PortType> => name |
<Binding> => type attribute |
|
|
|
|
PortType
can contain more than 1 operation
Binding
defines port communication protocol,can define multi-binding for a certain port type
Biding is targeting operation of a port type, it defines
- message format(soap, text)
- transport type (http, email...)
There are 2 kinds of error message:
- Soap Fault message - system generated due to system error
- Business error message - defined as fault message, and returned in soap message body
WSDL Binding Style
- RPC/encoded,
- RPC/literal
- Document/encoded,
- Doument/literal
- document/literal wrapped pattern
The style has nothing to do with a programming model. It merely dictates how to
translate a WSDL binding to a SOAP message. Nothing more.
(http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/
)
Web service style
RPC, Document which are not how web service is called, but how the message is constructed (formated)
Compare two styles
RPC |
<foo:concat>
xmlns:foo="http://ttdev.com/ss"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance">
<s1 xsi:type="xsd:string">abc</s1>
<s2 xsi:type="xsd:string">123</s2>
</foo:concat> |
Document |
<foo:concatRequest xmlns:foo="http://ttdev.com/ss">
<s1>abc</s1>
<s2>123</s2>
</foo:concatRequest> |
The significant difference is that the former can't be
validated with a schema while the latter can. Therefore, document style web
service is becoming the dominant style. According to an organization called
"WS-I (web services interoperability organization)", you should use document
style web services only.
(Developing web service with Apache CXF and Axis 2, Kent Ka La Tong
) good book, highly recommneded, first 2 chapters are free, I read it and find its quite helpful and easy to understand,
You can find the free chapters here: http://wiki.apache.org/ws/FrontPage/Axis2/
URI
- URL - location of an obect.
- URN - purely Id of an object
Qname
namespace + local part
In Web service, each port, binding, port type and operation has a Qname uniquely identify it,
Web Service style
- RPC-Literal is always wrapped (not BARE). - allow more than one element bound to body
- Document Literal (BARE) - allow only one element bound to body
- Document Literal Wrapped (The parameterStyle attribute in the
SOAPBinding annotation is removed and that implies the service is wrapped
due to "Wrapped" being the default
for the attribute.)
- http://www.khanna111.com/articles/SOAP_Styles_Differences.html
- http://www.coderanch.com/t/501314/Web-Services/java/Simple-Unwrapped-Wrapped-SOAP-messages#2277662
- http://fusesource.com/docs/framework/2.2/jaxws/JAXWSServiceDevJavaFirstAnnotateOptionalSOAPBinding.html
- http://msdn.microsoft.com/en-us/library/2b4bx2t6%28VS.80%29.aspx
Client side handler
-
For an outbound message (for instance, a client request under
the request/response MEP),
the handleMessage
method or
handleFault
method in a LogicalHandler
code execute before
their counterparts in a
SOAPHandler
.
-
For an inbound message, the handleMessage
method or
handleFault
method in a SOAPHandler
code execute before
their counterparts in a
LogicalHandler
.
Way to deal with web service attachement
-
The DIME solution
- it seems an old protocol
.
-
The MTOM solution
- protocol on the way
-
Binary encoding
- xsd:hexBinary
or a xsd:base64Binary
type, simplest but not efficient, as paraser will go through it even don't need it.
http://www.ibm.com/developerworks/webservices/library/ws-tip-noattach.html
wsimport
wsdl - physicla location of wsdl file when run the command
wsdlLocation - its set in the @WebserviceClient to point to wsdl file which can be found in Jar file
JAXB
If compiler see ref or inner complexType
, it will generate elementType
Sample 1:
<jaxws:bindings
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
wsdlLocation="xxxx/xxxxx/xxxxxxxx.wsdl"
xmlns:jaxws="http://java.sun.com/xml/ns/jaxws">
<jaxws:package name="xx.xx.xxxx.xxx"/>
</jaxws:bindings>
Sample 2:
<?xml version="1.0" encoding="UTF-8"?>
<jaxb:bindings jaxb:version="2.0"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
schemaLocation = "xx/xxx/xxxx.xsd"
node="//xsd:schema">
<jaxb:schemaBindings>
<jaxb:package name="package.xxx.xxx"/>
</jaxb:schemaBindings>
</jaxb:bindings>
Explain Axis2 - how to handle web service request
http://wso2.org/library/176
Web Service class annotation
@javax.jws.WebService(endpointInterface = "xxx.xxx.XXXPortType", targetNamespace = "http://ns.xxxx.xxx.xxxx/xxx/xxx", serviceName = "XXXService", portName = "XXXXPort")
@Addressing(enabled = false)
@HandlerChain(file = "xxxhandlers.xml")
MyServiceImpl implement MyServicePortyType{...}
IBM Admin Console URL
http://localhost:9061/ibm/console/unsecureLogon.jsp
https://localhost:9043/ibm/console/logon.jsp
WSDL 1.1 distinguishes between two message styles: document and RPC. Here's how each style affects the contents of <soap:Body>
.
-
Document: <soap:Body>
contains one or more child elements called parts. There are no SOAP formatting rules for what the <soap:Body>
contains; it contains whatever the sender and the receiver agree upon.
-
RPC:
RPC implies that <soap:Body>
contains an element with the name of the method or remote procedure
being invoked. This element in turn contains an element for each
parameter of that procedure.
For applications that use
serialization/deserialization to abstract away the data wire format,
there's one more choice to be made: the serialization format. There are
two popular serialization formats today:
-
SOAP Encoding:
SOAP encoding is a set of
serialization rules defined in section 5 of SOAP 1.1 and is sometimes
referred to as "section 5 encoding." The rules specify how objects,
structures, arrays, and object graphs should be serialized. Generally
speaking, an application using SOAP encoding is focused on remote
procedure calls and will likely use RPC message style. The rest of this
article ignores SOAP encoding and focuses on literal format.
-
Literal:
Data is serialized according to a schema. In practice, this schema is
usually expressed using W3C XML Schema. Although there are no prescribed
rules for serializing objects, structures, and graphs, etc., the
service's schema describes the application-level Infoset of each of the
service's messages.
Ref
: http://msdn.microsoft.com/en-us/library/ms996466.aspx
分享到:
相关推荐
C# Web Service是一种基于.NET Framework的开发技术,用于创建分布式应用程序,使得不同系统间能够通过互联网进行通信。这种服务提供了一种标准化的方式,允许应用程序通过HTTP协议交换数据,因此,即使它们是由不同...
在《实战Delphi6/Kylix2/SOAP/Web Service程序设计篇》这本书中,作者李维精心编撰了一套系统而全面的教程,针对的是Delphi6和Kylix2这两个经典的Visual Basic derivative (VBD) 编程环境,尤其是针对SOAP(Simple ...
ASP.NET Web Service是一种基于.NET Framework的简单方法,用于构建可跨平台、跨语言通信的Web应用程序。这个例子是为初学者设计的,旨在演示如何创建和使用Web Service,以及如何在ASP.NET环境中调用这些服务。 ...
"Web Service 精典入门教程" 本篇教程旨在为读者提供一个完整的 Web Service 入门指南,涵盖了 Web Service 的基本概念、架构、SOAP 协议、WSDL 文件、_WS-Security 等重要知识点。 Web Service 基本概念 Web ...
《T100 Web Service 接口开发v1.5版》 在现代信息技术领域,Web Service接口开发扮演着至关重要的角色,它使得不同系统之间的数据交换和功能调用变得简单而高效。本文将深入探讨T100 Web Service接口开发的最新版本...
标题"D6 SOAP_WEB SERVICE"指的是使用Delphi编程语言开发基于SOAP(简单对象访问协议)的Web服务。在本文中,我们将深入探讨这个主题,了解如何使用Delphi构建Web服务以及SOAP在其中的作用。 首先,让我们了解一下...
### Service Now Web Service知识点 #### 一、简介与概述 **Service Now Web Service**是一种集成解决方案,它允许不同应用程序之间通过网络进行通信。Service Now 支持多种类型的 Web 服务,包括作为提供者...
web service在第一次启动时出现启动缓慢的问题,通常是指在运行或访问web service时遇到的启动延迟现象。这种问题可能会在不同的web service应用中出现,尤其是在首次连接或部署新服务时更为常见。web service是一种...
本示例代码将帮助你理解和实现一个完整的Web Service程序。 首先,我们来看"xfire-client"部分。XFire是早先的一个Java Web Service框架,它简化了客户端和服务端的开发。在Java中,创建Web Service客户端通常涉及...
### Web Service应用实例详解 #### 一、IIS安装与配置 在开发Web Service之前,首先需要确保服务器上已正确安装并配置了Internet Information Services (IIS)。无论是Windows Server 2003还是Windows XP,IIS都是...
《实战Delphi6.Kylix2.SOAP.Web Service程序设计篇》是由知名技术专家李维编著的一本专业书籍,主要面向的是希望深入理解和应用Delphi6、Kylix2、SOAP以及Web Service技术的开发者。这本书详细介绍了如何利用这些...
Web Service Proxy Wizard 是一个工具,它为Visual Studio 6.0的开发者提供了一种方法,可以将Web服务封装成一个代理组件(.dll),这个组件可以在设计时通过早期绑定(Early Binding)像其他COM组件一样使用。...
Web Service编程是现代软件开发中的一个重要领域,尤其是在分布式系统和跨平台通信中。C#作为.NET框架的主要编程语言,提供了强大的工具和库来创建和消费Web Service。本篇将深入探讨C#环境下开发Web Service的相关...
JavaScript Web Service调用是Web开发中的一个重要概念,它允许客户端的JavaScript代码与服务器端的服务进行交互,从而实现数据的获取和发送。这种交互通常基于HTTP协议,可以是RESTful API或者传统的SOAP服务。在本...
本篇内容将深入探讨如何利用PB11来开发Web Service应用,这对于初学者来说是一份宝贵的资源。 一、Web Service基础 Web Service是一种基于开放标准的、平台无关的通信协议,它允许不同系统之间的数据交换。在PB11中...
VMware vSphere Web Service SDK开发指南是一份指导开发者如何使用VMware vSphere SDK进行开发的文档。VMware vSphere是VMware公司推出的业界领先虚拟化解决方案,它通过提供高级抽象层来管理和控制计算资源,为用户...
**Yahoo Web Service 2.11** Yahoo Web Service 2.11 是一个重要的API接口,它允许开发者利用Yahoo的在线资源和服务进行程序开发。这个版本可能是对之前版本的升级,可能包含了性能优化、新功能的添加以及已知问题...