SOA enhancements through XML Networking

From Computing and Software Wiki

Jump to: navigation, search

Service Oriented Architecture (SOA) enhancements through Extensible Markup Language (XML) Network has been a very discussed topic in the last few years. The performance and scalability of current SOA models are not sufficient to satisfy the increasing business demand of today's world. Web services for major companies are faced with extreme throughput issues that affect all the underlying applications that depend on such services. [1] This wiki discusses the approaches that can be taken to accelerate this service-sharing process by expanding the use of XML technologies throughout the middleware of the SOA framekwork. [2]


Contents

SOA Overview

Figure 1
Client and server interaction within a SOA framework. [8 ]

The web services concept provides a framework for sharing services across a network (such as the internet). Each of these services represent a group of objects and resources that are combined to provide a tool for business applications. Service-oriented architectures use these tools to build their custom applications: various services are grouped together to form the desired product (see figure 1). Therefore naturally the key factor for the success of SOA is interoperability. This means that services must be reachable from within any development framework: Java SE, .NET, etc. For such concept to become true various standards and regulations must be specified. [3] Such components will be discussed in the following section.

SOA Components

Figure 2
Network messaging layer of a common SOA framework. [2 ]
The main "ingredients" for a web service layer, and essentially a service-oriented architecture are: UDDI, WSDL, SOAP and HTTP. Together they specify what the web service is and how to reach it, which is all the client application needs to know.

UDDI

  • Stands for Universal Description,Discovery and Integration.
  • Sponsored by OASIS.
  • An XML-based registry that allows businesses to list and search for web services. [4]

WSDL

  • Stands for Web Services Description Language.
  • An XML-based language that describes a web service.
  • The 2.0 version is a W3C recommendation. [5]

SOAP

  • Stands for Simple Object Access Protocol.
  • A protocol for exchanging XML-based messages over a network.
  • Provides a standard message format for services to use. [6]

HTTP

  • Stands for Hypertext Transfer Protocol.
  • It is used to transfer information through a network (intranet, of world wide web).
  • Allows for a communication channel between a client and a server. [7]


Enhancements through XML Networking

As noted above, all aspects of a service-oriented architecture are based on the XML standard. However it is strange to realize that a large number of existent SOA-based systems do not take advantage of the growing arsenal of XML-related technologies. [1] In its current framework state, a large incoming SOAP request can really damage the throughput of a network: this message needs to be de-serialized, then proper networking routing logic applied, serialized again, routed to the destination service, process the response, and finally build the outgoing SOAP envelope. The efficiency of all these steps can be improved by applying XML-related tools at the network level, and therefore avoid the penalty of serialization/de-serialization of large SOAP messages. [2]

Overview of Technologies

Below is a brief listing of the main XML technologies that can be utilized to enhance the networking of web services.

XSD

  • XML Schema (XSD) is a W3C Standard that specifies the rules and structure of its related instances.
  • Designed to replace Document Type Definition (DTD), allowing for more complex internal structures.
  • Can improve performance of optimized parsers. [9]

XSLT

  • Stands for Extensible Stylesheet Language Transformation.
  • Transforms a given XML document into another document (usually XML or XHTML) based on content filtering and manipulation.
  • Main goal is to make documents readable by humans. [10]

XPath

  • Stands for XML Path Language.
  • It allows for easy navigation of XML documents
  • Values (string, booleans and numbers) can also be calculated from various nodes.
  • In its newest version (2.0), an entire subtree can be returned as the result of a query. [11]

XQuery

  • A query language for XML documents.
  • Main goal is to make SQL-like queries. [12]

XML Encryption

  • Allows for encryption of specific elements within a document.
  • Speeds up the cryptographic process of documents. [13]


Integrating XML Network

Figure 3
Integration of XML technologies inside a service-oriented architecture. [2 ]

Now that the key XML technologies have been presented we can illustrate their integration and how they can improve the web services network by continuing to use the "large SOAP request" example. First of all, this message can be properly routed to its web server destination by using XPath to examine the message payload (instead of just the header). [2]

Such "on the spot" content-based routing avoids a huge networking delay that was caused by serialization of the message in order to find where it should go. Also, with the help of a corresponding XML Schema this process can be further improved since the leading-market parsers now offer optimizations based on xsd documents. Continuing now at the data-retrieval level of the web service provider, XQuery (using XPath) can be utilized to perform efficient queries such as extracting an entire subtree from the database and placing it into the response message. [12]

In terms of encryption, the advantages of XML Encryption standards allow for precise element encryption, allowing sensitive networking information to be read in a very efficient manner. Lastly, the XSLT documents can avoid unnecessary network traffic by directly transforming XML documents into different formats without having to send to another service provider.

Figure 3 illustrates the integration of an XML-enhanced web service network. The middle-layer now contains new technology that allows it to become more efficient and provide a much higher throughput of responses when faced with large quantity of requests from the client.




FastSOA: the next step

Figure 4
FastSOA concept integrated with a service-oriented architecture [1 ]

As described in Frank Cohen's article [1], FastSOA is a concept that further extends the use of XML technologies to improve web services networking. The basic idea of FastSOA is to cache frequently requested information inside a native XML database (not a relational database). Therefore whenever this request is repeated, the web service provider can quickly use XQuery to extract the response and thus avoid the bandwidth of going through the original data retrieval process.

Careful considerations had to be made when designing this new concept. Since many organizations already have a stable service-oriented framework in place, they would not be willing to implement an optimization that would disrupt the flow of data. That's the main reason for FastSOA's encapsulated layer, as seen in Figure 4. Basically, this new caching system becomes the first service that an incoming request goes through.

The real benefits, as illustrated by Cohen, cannot be seen if requests are completely different or occur in very long time intervals. However for extremely busy web service providers such as an international car parts manufactory, FastSOA extremely improves the networking delay between responses. This enhancement in bandwidth has sprung a very large interest in caching of frequent requests. Of course, this speedup is only possible with the aid of the mentioned XML-related technologies. Therefore we can conclude that in the next few years all existent service-oriented architectures will take the necessary steps to embrace these XML networking solutions.

References


1. Frank Cohen: FastSOA: Accelerate SOA with XML, XQuery, and native XML database technology IBM.com February 7, 2006.
2. Silvano Da Ros: Boosting the SOA with XMLNetworking, Cisco.com December 1, 2006.
3. Service-oriented architecture, Wikipedia April 6, 2008.
4. UDDI, Wikipedia March 25, 2008.
5. WSDL, Wikipedia March 7, 2008.
6. SOAP, Wikipedia April 3, 2008.
7. HTTP, Wikipedia April 6, 2008.
8. Hugo Haas SOA Diagram, W3C.org May 21, 2003.
9. Simon St. Laurent: Describing your Data: DTDs and XML Schemas, XML.com December 1, 1999.
10. XSLT, Wikipedia March 27, 2008.
11. XPath, Wikipedia April 4, 2008.
12. XQuery, Wikipedia March 27, 2008.
13. XML Encryption, W3C December 10, 2002.


External Links

See Also

Signature

--Demagaal 23:48, 6 April 2008 (EDT)

Personal tools