##Chapter 6 - WS-*
###Introduction
The three protocols we have covered to this point are sometimes called the first-generation XML web services. SOAP is the wire protocol and WSDL documents the service. They are also functional protocols in that they are immediately concerned with basic communication of messages.
UDDI can act as a registry and can be considered the first non-functional standard. Complex information systems, however, require many more non-functional services that support the functional ones.
These include things like workflow, management, security, reliability, transactions, and quality of service (QoS). A great number of web service specifications have arisen to offer these kinds of services. They are so numerous, in fact, that the cover term for them is WS-\*, were the star is a wildcard that means all of them! These are the second-generation services. We will briefly cover the most important of these specifications in this chapter, and take a look at server-side XSLT processing.
We have covered enough of the web services specifications to build up a labeled web services stack as in figure 6.1.
We will briefly cover the WS-\* specifications in the non-shaded cells (non-functional) in figure 6.1. All of these specifications typically add tags to the SOAP header. WS-Addressing added a crucial missing element to the SOAP header - the address! Oddly enough, the original SOAP specification had no destination address in the document. Only the transport protocol such as HTTP contained that information and that could cause a problem once the SOAP message was stripped from the HTTP entity body, especially since SOAP is supposed to be transport protocol neutral. **WS-Addressing** added the source and destination addresses and details about routing the message between intermediaries. Figure 6.2 shows a simple modification of the stock price SOAP example from w3schools. Notice that I have added a SOAP header which was missing in the original example and used two simple tags defined in the WS-Addressing namespace (there are many more available in the specification at: http://www.w3.org/Submission/ws-addressing/).
![Web services stack](is651-images/f6-1_opt.png)
Figure 6.1. The web services stack.
Also notice that the address in the HTTP header is also in the SOAP header.
**WS-ReliableMessaging** (WS-RM) is a specification for reliable message delivery (there is also a competing specification called WS-
Reliability). This includes acknowledgment of delivery, sequencing of messages, and prioritization of messages. This specification is maintained at The organization for the advancement of structured information standards (OASIS), which is the other web standards organization besides the W3C.
![WS-Addressing](is651-images/f6-2_opt.png)
Figure 6.2. WS-Addressing.
**WS-Security** from OASIS is an important standard for encrypting portions of the SOAP message. The details of encryption are beyond the scope of this course and you should be sure and take a security course to learn encryption before you graduate! It contains two specifications:
- XML Signature
- XML Encryption
XML Signature is used to sign data in any XML document, SOAP in this case. Encryption technology includes the concept of a digital signature.
This means that the data is encrypted using public key encryption such that the data is not secret, but is guaranteed to be from the indicated sender and not to have been tampered with (message integrity). XML Encryption is a similar technology, but also makes the data secret.
Different parts of the SOAP message can be encrypted with either or both of these methods and so the all the participants will be able to see only the parts of the message that they are authorized to see and be assured of message integrity.
There are many more WS-* specifications such as:
- WS-Atomic Transaction
- WS-Coordination
- WS-Eventing
- WS-Metadata Exchange
- WS-Notification
- WS-Policy Framework
They all offer various non-functional services for a SOA implemented with XML web services. The enterprise service bus (ESB) is a software infrastructure that is offered by many vendors as a place to deploy WS-* services. It acts as a lightweight, standard backbone for those WS-* services. It standardizes the environment so that all those services can work together. All messages would pass through the ESB and the services can be applied. For example, with java-based web service frameworks like J2EE, there is a standard integration platform called the Java business integration (JBI) which forms their ESB implementation. All ESBs offer a distributed but centrally administered service. That means that the ESB middleware software is on each node that participates in the system.
Two important WS-\* specifications for workflow process management are **WS-BPEL** (business process execution language) and **WS-CDL** (choreography definition language). Both specifications concern modeling business process or workflows and are maintained at OASIS. A workflow is a set of activities, which is stored as a model and they depict a process. A group of activities depict a complete workflow. A workflow can be run by the workflow runtime engine. Workflows are typically presented as data flow diagrams where the activities are tasks as in the very simple in figure 6.3.
![Workflow diagram](is651-images/f6-3_opt.png)
Figure 6.3. A workflow diagram.
This kind of workflow can be modeled in XML and this is what WS- BPEL and WS-CDL do. WS-BPEL models workflows within an organization (inside the firewall and called an orchestration language) and WS-CDL models workflows between organizations (outside the firewall and called a choreography language). The XML languages are for representation,
modeling, and interface definition. They are not for running programs and so the run-time engine implementation is in either J2EE, .NET, or some other programming language framework. These implementations would read the XML documents from the workflow web service specifications and implement the processing required by the modeled business process.
An example of a simple WS-BPEL document is given in figures 6.4 and 5.
The XML BPEL document to support the simple hello world process from figure 6.4 is given in listing 6.1. The goal of this example is not for you to memorize all the tags associated with WS-BPEL, but to see how the XML naturally models the workflow. The partner links and process variables are defined in tag blocks. Also note that the sequence tag in listing 6.1 encapsulates the simple step-wise process of the receive,
assign, and reply tasks. As we know, WSDL documents describe the interface of these processes that will be presented to the outside world.
![The hello world process workflow](is651-images/f6-4_opt.png)
Figure 6.4. The hello world process workflow.
Lisitng 6.1. The BPEL document.
For example, the abstract interface presented to callers is defined in the associated WSDL as a portType:
Listing 6.2. portType.
WS-CDL is similar, but with extra tags that are concerned with the between organization processes.
###Server-side XSLT
We saw client-side XSLT in chapter 5, but most XSLT processing is done on the server. Most programming languages have extensive libraries for dealing with XML, including XSLT processing. We will look at SAXON (http://saxon.sourceforge.net/), which is a java-based XSLT processor.
In this case, any XSLT processing would be done on the server before anything was returned to a user on the web or to another computer program. So in the examples we used in chapter 5, you would only see HTML code returned to the browser, and not see the XML at all when you view the source. This works out well, since as a developer, you would not want to be dependent of the browser version and configuration of arbitrary users.
In chapter 5, we wrote XSLT stylesheets to match our XML code that we had previously written. A more common scenario is to generate XML documents using a standard XMLSchema and then be able to reuse already written XSLT stylesheet libraries for that schema. So you do not have to write the XSLT at all, simply validate your XML against a standard schema.
An example standard schema is DocBook (http://www.docbook.org/) which is a large and robust schema designed for creation of XML documentation of all kinds - books, papers, manuals, etc. So if we have those kinds of materials and we wish to create on-line publications, we can use this schema to markup our text and then easily use the XSLT library for them.
Many computer documentation projects use DocBook. DocBook publishes its schema in DTD and RELAX NG formats. Recall that RELAX NG is a modern alternative to XMLSchema. Figure 6.5 shows a snippet of XML and RELAX NG to give you the flavor of the difference and simplicity of RELAX NG, but it is not essential for understanding DocBook. All schema languages have the same purpose.
Each tag is defined in the schema for DocBook and there are many more tags than you see here. The DocBook book (!) is available on-line at http://www.docbook.org/tdg5/en/html/docbook.html. See chapter 2 of that book for instructions on how to mark up text to follow the DocBook schema. After using the standard DocBook XSLT stylesheets, on the XML in listing 6.4, we get the web page in figure 6.6. We will do this same kind of exercise in the end of chapter exercises.
![RELAX NG](is651-images/f6-7_opt.png)
Figure 6.5. RELAX NG.
![HTML from the DocBook XSLT](is651-images/f6-8_opt.png)
Figure 6.6. HTML from the DocBook XSLT.
< ?xml version="1.0" encoding="utf-8"?>
MetamorphosisMetamorphosisWritten By: FranzKafkaTranslated by: David WyllieAugust 16, 2005 [EBook #5200]2002David WyllieChapter IOne morning, when Gregor Samsa woke ... What's happened to me? he thought ...
Chapter IIIt was not until it was getting dark ...It was only when he had reached the door ...
Listing 6.4. DocBook XML.
###XSLT and Web Service
XSLT is also used to transform XML documents in web services from one XML format to another when the participants need it. For example, in the PO example we used earlier, one of the participants might be using a different XMLSchema for the PO natively on their system than the one that is used by the web service that processes the POs even though all the actual content is the same. So XSLT can be used to transform the XML to use the appropriate schema at the appropriate time.
###Chapter 6 Exercises
Do the end-of-chapter exercises for each chapter of the book by following the link in the on-line syllabus.