Web Services I 533
Web Services I 533
Marlon Pierce
Indiana University
mpierce@cs.indiana.edu
What Are Web Services?
Web services framework is an XML-based distributed services
system.
SOAP, WSDL, UDDI
WS-Interoperability
WSDL
WSDL
Server Web
Server
SOAP
JDBC
JDBC
DB DB
Explanation of Previous Slide
The diagram on the left represents a standard web
application.
Browsers converse with web servers using HTTP GET/POST
methods.
Servlets or CGI scripts process the parameters and take
action, like connect to a DB.
Examples: Google, Amazon
On the right, we have a Web services system.
Interactions may be either through the browser or through a
desktop client (Java Swing, Python, Windows, etc.)
Examples: Google, Amazon
Some Terminology
The diagram on the left is called a client/server system.
The diagram on the right is called a multi-tiered architecture.
SOAP: Simple Object Access Protocol
No longer an abbreviation in SOAP 1.2
Interfaces (APIs).
Amazon and Google Experiment with
Web Services
Both Google and Amazon have conducted open experiments
with Web services.
Why? To allow partners to develop custom user interfaces and
applications that work Google and Amazon data and services.
You can download their APIs and try them.
http://www.google.com/apis/
http://www.amazon.com/webservices
More Examples of Web Services
Geographical Information Systems are perfect candidates for WS
The Open Geospatial Consortium defines several relevant standards
Geographic Markup Language (GML) exchanges info.
Web Feature Service works with abstract GML feature data.
Web Map Service creates maps (images)
Lots more at http://www.opengeospatial.org/specs/?page=specs
XMethods
Lots and lots of contributed examples, live demos
Try them
http://www.xmethods.com/
Lots more for bioinformatics.
Easiest way to find is to download Taverna from SourceForge.
Then check out http://communitygrids.blogspot.com for guidelines.
CICC is building many new one for chemical informatics.
Web Service Architectures
The following examples illustrate how Web services interact with
clients.
For us, a client is typically a JSP, servlet, or portlet that a user
accesses through browser.
You can also build other clients
Web service interoperability means that clients and services can
Marlon Pierce
Community Grids Lab
Indiana University
mpierce@cs.indiana.edu
What Is WSDL?
Web Service Description Language
W3C specification
See http://www.w3.org/TR/wsdl for the official “note” for
WSDL 1.1.
WSDL 1.1 never became a full “recommendation”.
WSDL 2.0 working draft just completed it’s public call for
comments.
This slide set will review WSDL 1.1, which is still the
“standard”.
WSDL 2.0 should replace this soon.
Why Use WSDL?
WSDL uses XML to describe interfaces
Programming language independent way to do this.
So you can use (for example) C++ programs to remotely invoke Java programs
and vice versa.
Consider Web browsers and Web servers:
All web browsers work pretty well with all web sites.
You don’t care what kind of web server Amazon.com uses.
Amazon doesn’t care if you use IE, Mozilla, Konqueror, Safari, etc.
You all speak HTTP.
WSDL (and SOAP) are a generalization of this.
Note I will describe WSDL from an Remote Procedure Call/Remote Method
Invocation point of view.
But WSDL and SOAP also support more a more message-centric point of view.
C.f. Java Messaging System.
This is probably the way of the future for Web Services.
A Very Simple Example: Echo
public class echoService implements echoServiceInterface{
public String echo(String msg) {
return msg;
}
public static void main(String[] args) {
new echoService().echo(“hello”);
}
}
The Echo Interface
/**
* All implementers of this interface must
* implement the echo() method.
*/
public interface echoServiceInterface {
public String echo(String toEcho);
}
Now Use Echo As A Remote Service
We can take the previous
Java program and deploy C#
it in Tomcat as a service.
Client
Clients can then invoke
the echo service. WSDL
WSDL tells them how to
do it.
SOAP(Echo “hello”) “hello”
Clients don’t need to
know anything about the
service implementation
or even language.
WSDL
WSDL is the latest IDL
DCE and CORBA IDL Tomcat+
were two older examples. Axis+Echo
What Does echoServiceInterface Look
Like In WSDL?
<?xml version="1.0" encoding="UTF-8" ?>
<wsdl:definitions targetNamespace="http://grids.ucs.indiana.edu:8045/GCWS/services/Echo"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://grids.ucs.indiana.edu:8045/GCWS/services/Echo"
xmlns:intf="http://grids.ucs.indiana.edu:8045/GCWS/services/Echo"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:types />
<wsdl:message name="echoResponse">
<wsdl:part name="echoReturn" type="xsd:string" />
</wsdl:message>
<wsdl:message name="echoRequest">
<wsdl:part name="in0" type="xsd:string" />
</wsdl:message>
<wsdl:portType name="Echo">
<wsdl:operation name="echo" parameterOrder="in0">
<wsdl:input message="impl:echoRequest" name="echoRequest" />
<wsdl:output message="impl:echoResponse" name="echoResponse" />
</wsdl:operation>
</wsdl:portType> There’s more…
What Does This Look Like In WSDL,
Continued?
<wsdl:binding name="EchoSoapBinding" type="impl:Echo">
<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="echo">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="echoRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://grids.ucs.indiana.edu:8045/GCWS/services/Echo"
use="encoded" />
</wsdl:input>
<wsdl:output name="echoResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding
namespace="http://grids.ucs.indiana.edu:8045/
GCWS/services/Echo" use="encoded" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="EchoService">
<wsdl:port binding="impl:EchoSoapBinding" name="Echo">
<wsdlsoap:address location="http://grids.ucs.indiana.edu:8045/GCWS/services/Echo" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Messages
Abstraction of request and response messages that my client
and service need to communicate.
PortTypes
Contains a set of operations.
Bindings
Binds the portType to a specific protocol (typically SOAP over
http).
You can bind one portType to several different protocols by using
more than one port.
Services
Gives you one or more URLs for the service.
…
</wsdl:definitions>
WSDL Types
Note we have not yet said message is the request and which is
the response.
That is the job of the portType operations, coming up.
Structure of a Message
WSDL <message> elements have name attributes
and one or more parts.
The message name should be unique for the
document.
<operation> elements will refer to messages by name.
necessary.
Our service just needs xsd:strings, so no problem.
PortTypes and Operations
WSDL portTypes
WSDL messages are only abstract messages.
We bind them to operations within the portType.
The structure of the portType specifies (still
abstractly) how the messages are to be used.
Think of operations->java methods and portTypes-
>java interfaces.
The echoServiceInterface portType
<?xml version="1.0" encoding="UTF-8" ?>
<wsdl:definitions>
<wsdl:types />
<wsdl:message name="echoResponse">
<wsdl:part name="echoReturn" type="xsd:string" />
</wsdl:message>
<wsdl:message name="echoRequest">
<wsdl:part name="in0" type="xsd:string" />
</wsdl:message>
<wsdl:portType name="Echo">
<wsdl:operation name="echo" parameterOrder="in0">
<wsdl:input message="impl:echoRequest"
name="echoRequest" />
<wsdl:output message="impl:echoResponse"
name="echoResponse" />
</wsdl:operation>
</wsdl:portType>
…
</wsdl:definition>
EchoService portType
<wsdl:portType name="Echo">
<wsdl:operation name="echo" parameterOrder="in0">
<wsdl:input
message="impl:echoRequest"
name="echoRequest" />
<wsdl:output
message="impl:echoResponse"
name="echoResponse" />
</wsdl:operation>
</wsdl:portType>
portType Message Patterns
PortTypes support four types of messaging:
One way: Client send a message to the service and doesn’t want a
response.
<input> only.
Request-Response: Client sends a message and waits for a
response.
<input>, then <output>
Solicit-Response: Service sends a message to the client first, then
the client responds.
<output>, then <input>
Notification: <output> only.
These still are abstract. We must implement them using some
message protocol.
HTTP units of transmission are request and response, so mapping
<wsdl:message name="echoResponse">
<wsdl:part name="echoReturn" type="xsd:string" />
</wsdl:message>
…
<wsdl:portType name="Echo">
<wsdl:operation name="echo" parameterOrder="in0">
…
<wsdl:output message="impl:echoResponse"
name="echoResponse" />
</wsdl:operation>
</wsdl:portType>
The Picture So Far…
Input Message
Input Message portType
Part has
Part I npu
t Operation
Input
Output Message
hasOutput
Ouput
Part
Part
Bindings
WSDL SOAP Bindings
In the previous slide, we specify several things:
We will use SOAP/HTTP
portType binding
Operation Operation
Input Input
Ouput Output
Structure of the Binding
<binding> tags are really just placeholders.
They are meant to be extended at specific places by
wsdl protocol bindings.
These protocol binding rules are defined in supplemental
schemas.
The following box figure summarizes these things
Green boxes are part of WSDL
From the wsdl namespace, that is.
Red boxes are parts of the document from other schemas
From wsdlsoap namespace in the echo example.
Binding Structure
binding
Non-wsdl extension
operation
Non-wsdl extension
input output
Non-wsdl Non-wsdl
extension extension
A little more on encoding...
We specify SOAP encoding
SOAP is a message format and needs a transport
protocol, so we specify HTTP.
Operation styles may be either “RPC” or “Document”.
We use RPC.
<wsdl:service name="EchoService">
<wsdl:port
binding="impl:EchoSoapBinding"
name="Echo">
<wsdlsoap:address
location=“http://..../"/>
</wsdl:port>
</wsdl:service>
Port and Service Tags
Operation
Port #1
URL #1
Input
Port #2
Output URL #2
Summary of WSDL
WSDL decouples remote service operations.
Types=custom message definitions.
soapenv:encodingStyle=http://schemas.xmlsoap.org/soap/encoding/
xmlns:ns1="http://../axis/services/echoService">
<echoReturn xsi:type=“String“>
Hollow World
</echoReturn>
</ns1:echoResponse>
</soapenv:Body>
</soapenv:Envelope>
SOAP Structure
SOAP structure is very
Envelope
simple.
0 or 1 header elements
1 body element
Header
Envelop that wraps it all.
optional.
Headers may also have a “relay” attribute.
Header Definition From SOAP Schema
<xs:element name="Header" type="tns:Header" />
<xs:complexType name="Header">
<xs:annotation>
<xs:documentation>Elements replacing the wildcard MUST be
namespace qualified, but can be in the
targetNamespace</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:any namespace="##any" processContents="lax"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:anyAttribute namespace="##other" processContents="lax" />
</xs:complexType>
Example Uses of Headers
Security: WS-Security and SAML place additional security
information (like digital signatures and public keys) in the header.
Quality of Service: SOAP headers can be used if we want to
negotiate particular qualities of service such as reliable message
delivery and transactions.
Session State Support: Many services require several steps
and so will require maintenance of session state.
Equivalent to cookies in HTTP.
Yes Yes
must Process
Role? Understand Header
No No
processContents="lax" minOccurs="0“
maxOccurs="unbounded" />
</xs:sequence>
<xs:anyAttribute namespace="##other"
processContents="lax" />
</xs:complexType>
SOAP Body Example
<soapenv:Body>
<ns1:echo soapenv:encodingStyle=
"http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1=
"http://.../axis/services/EchoService">
<in0 xsi:type="xsd:string">Hollow
World</in0>
</ns1:echo>
</soapenv:Body.
Example SOAP Body Details
The <Body> tag is extended to include elements
defined in our Echo Service WSDL schema.
This particular style is called RPC.
Maps WSDL bindings to SOAP body elements.
Guidelines will be given in next lecture.
xsi-type is used to specify that the <in0> element
takes a string value.
This is data encoding
Data encoding rules will also be examined in next lectures.