Welcome!

SOA & WOA Authors: Rebel Brown, Liz McMillan, Miko Matsumura, Yeshim Deniz, Mark Hamilton

Related Topics: SOA & WOA

SOA & WOA: Article

Pragmatic SOA Interoperability

Architecture, not new middleware

A well-planned Web Service interoperability environment begins by clearly defining who your Web Service consumers are now and in the future. There was a time not so long ago when you could count on a fairly homogenous consumer population. This was about the same time that you were happy just to be able to get a Web Service running in the first place and finding a consumer who could actually interact with your Web Service was cause for celebration. Those days have changed however and Web Services interoperability, once a "fancy" addition to your SOA design, is now a key and indispensable requirement in most SOA scenarios.

Today, SOA architects must contend with complex scenarios that assume a variety of Web Service consumers or in many cases are asked to create Web Services that are generic enough to be interoperable with just about any known consumer. If you're serious about implementing SOA in your worldwide enterprise you'll have to forget about the luxury of being able to dictate the configuration of all of your consumers and instead build fully interoperable Web Services. Most robust Internet Web Service APIs, familiar to all of us such as Amazon.com, eBay, or Salesforce.com, have learned this lesson already with very successful results. Those companies know that Web Service interoperability lies in the architecture approach and not in the implementation of new middleware.

What Makes Interoperability So Challenging?

Standards Proliferation and Complexity
The interaction between Web Services and consumers is rooted on a set of standards developed by standards organization committees at OASIS, W3C, and WS-I. These standards such as XML Schema, SOAP, WSDL, and WS-* protocols are intended to provide a technology-agnostic level of abstraction over the service implementation which should theoretically guarantee interoperability. However, it's not the standards themselves, but their implementation by individual Web Service technology vendors that must be interoperable. In a perfect world, every vendor would implement Web Services standards in exactly the same way, which would guarantee interoperability out-of-the-box. As you must know, that's just too good to be true. In the real world, every vendor implements these standards sometimes with just slight variations and other times entirely different versions. In many other cases vendors choose which aspects of a standard to implement, or maybe even choose not to implement a given standard at all. This proliferation and complexity is most obvious when we look at the WS-* protocols.

When this article was written, up to four different WS-Addressing versions were in use. Three versions of the specification are named by their release date: the March 2003 version, the March 2004 version, and the August 2004 version, developed before the specification moved to W3C. The fourth version, 1.0, was completed in May 2006 and developed after the specification went under the W3C umbrella. And if that's not confusing enough, after moving to W3C, the specification split into multiple parts: a core specification and two other specifications that describe bindings for SOAP and WSDL.

There are also different WS-* protocols that address very similar scenarios such as WS-Eventing and WS-Notifications, WS-MessageDelivery and WS-Addressing or WS-Reliability and WS-ReliableMessaging. Committees from OASIS and W3C are working to unify those overlapped protocols into a single set of standards. Vendors can and often implement different versions of the same WS-* protocol or implement one of multiple similar standards such as WS-ReliableMessaging instead of WS-Reliability.

Although the combination of SOAP and WS-* protocols provide a solution for some of the most interesting challenges in distributed computing, the complexity of this approach makes it impractical and nearly impossible to implement in real-world interoperability scenarios. Just a small subset of the over 100 WS-* standards specifications available today have been implemented by vendors. One last, but certainly not least, challenge involved in using SOAP and WS-* protocols is that they can also limit the service availability to clients such as script applications or Web browsers that don't support that generation of SOAP messages.

Best Practice: Use WS-I Profiles
Some WS-* protocols have a WS-I profile available that contains some of the principles and a subset of features of the protocols that should be implemented to guarantee interoperability. Making the services compatible with a WS-I profile (is this one exists) is a standard and globally accepted approach to interoperability. However for some protocols, a WS-I profile isn't available or doesn't address the interoperability requirements.

Best Practice: Implement Multi-Binding Services
To support multiple versions of the same WS-* protocol it's recommended to design the services with multiple bindings per specific versions of the protocol. This approach segments the different types of interactions at the binding level improving aspects like versioning, management, etc. The code in Listings 1 and 2 illustrates a sample Microsoft Windows Communication Foundation (WCF) Service configured to support multiple types of interactions using bindings. Specifically, this service supports secure and reliable interactions as well as basic SOAP interactions using two different bindings.

Best Practice: Exposes SOAP and REST Interfaces
Resource State Transfer (REST) provides a simpler alternative to the use of SOAP and the WS-* protocols for some scenarios. The fact that REST is based on XML messages over HTTP makes it accessible to most of the client technologies on the market including browsers and script languages. Some services can expose both SOAP and REST interfaces and offer a broader set of options to consumers. The example in Listing 3 illustrates that approach using Oracle Application Server.

Aligning Code and Contract
When designing a service you must first consider where to start. Do you create your code first or your contract first? Or do you give them each equal importance by creating them in parallel. However, even if you were extremely diligent in developing perfect synergy between your code and your contract you would still find that the limitations of the basic standards themselves, such as XSD and WSDL, could easily do you in. For example, the XML Schema model presents severe limitations in terms of composability compared with most programming languages data structures. This is often reflected in non-optimal translations between XML Schema structures and programming data structures. Similarly, WSDL 1.0 and 2.0 are both too abstract for describing services that can be interpreted by Web Services frameworks in a consistent way.

There's a lot of debate in the Web Service community around whether to use a contract-first versus a code-first approach to develop Web Services. One of the common arguments in favor of a contract-first approach is that it facilitates interoperability. Whether that's arguably true, the reality is that just a few mortals know WSDL and XSD well enough to design solid service contracts. Given the complexities of both standards developers often end up designing non-optimal WSDLs and XSDs that are translated into poor service implementations. On the other hand, a code-first approach is more familiar to developers but can produce contracts that aren't interoperable.

Best Practice Recommendation
Some of the most successful Web Service implementations have been designed using a hybrid approach that combines the agility of a code-first approach with the flexibility of a XSD/WSDL-first approach. Following these technique developers can leverage their existing skills on a particular development platform to guarantee an optimal service implementation while the WSDL-XSD experts verify that the contract is suited to meeting the interoperability needs. Figure 1 illustrates this approach.

Multi-Transport Services
SOAP, WSDL, and the different WS-* protocols are transport-agnostic specifications. Theoretically it's possible to host the same service using multiple transports such as HTTP, TCP, JMS, etc. Although this feature is supported by some of the Web Services technology frameworks on the market such as Windows Communication Foundation (WCF) or Apache Axis, only HTTP has been adopted widely enough to be considered for interoperability scenarios. Another factor to consider when implementing multi-transport services in real-world scenarios is that certain transports require a specific behavior of the service. For instance, a Web Service that uses JMS as a transport probably implements one-way, long-running, and asynchronous operations. That behavior is fundamentally different from a Web Service that uses HTTP as a transport on which it makes sense to implement atomic operations using different multiple exchange patterns. Hosting the same Web Services using JMS and HTTP makes little or no sense in most of the scenarios.


About Jesus Rodriguez

Jesus Rodriguez is the Chief Software Architect at TwoConnect, Inc. (www.twoconnect.com), a Microsoft Gold Partner based in Miami, Florida. He is also a Microsoft BizTalk Server MVP and one of a few Architects worldwide to be a member of the .NET 3.0 Digerati team. As a member, Jesus has been selected to participate in a variety of Software Design Reviews with Microsoft’s Product Teams. Jesus is the Lead Architect for several BizTalk Server adapters including Web Services Enhancements 3.0, SalesForce.com, SonicMQ and the award winning Service Broker Enhancements. Jesus derived his extensive experience with business process integration and messaging through numerous implementations of loosely coupled systems founded on the principles of SOA. He is an active contributor to the .NET and J2EE communities, focusing on the interoperability aspects between those two platforms. His contributions include several articles for various publications including MSDN, Architecture Journal and Web Services Journal. Jesus is frequently seen leading sessions at TechEd, MVO Summit and the Microsoft Business Process and SOA Conference, as well as conducting Web Casts on varying Microsoft technologies. He is a prolific blogger on all subjects related to integration and has a true passion for technology. Contact Jesus at jrodriguez@twoconnect.com or through his blog at http://weblogs.asp.net/gsusx.

About Javier Mariscal

Javier Mariscal is the President and Founder of TwoConnect, Inc, a highly renowned consulting and systems integration company based in Miami, Florida with subsidiary offices in New York City, and San Francisco. After nearly 15 years, Javier is still mostly responsible for guaranteeing that TwoConnect’s innovative integration solutions deliver real and immediate results to its clients. As an author and frequent speaker on SOA and related technologies, Javier constantly reaffirms the need for “practical SOA” which focuses not on pushing a brand or a platform but on delivering immediate business rewards. Under his leadership, TwoConnect has been the first to market with multiple SOA related products and solutions such as the Web Services Enhancements 3.0 Adapter for Microsoft BizTalk Server and the SQL Server Service Broker Enhancements, both currently in production at companies worldwide. In 2006, TwoConnect announced a new line of products and services under its AdapterWorx brand, which has been hugely successful in accelerating its SOA solutions delivered. Following the success of AdapterWorx and a banner year in 2006 in general, Javier was nominated for Entrepreneur of the Year by Hispanic Business Magazine.

Comments (0)

Share your thoughts on this story.

Add your comment
You must be signed in to add a comment. Sign-in | Register

In accordance with our Comment Policy, we encourage comments that are on topic, relevant and to-the-point. We will remove comments that include profanity, personal attacks, racial slurs, threats of violence, or other inappropriate material that violates our Terms and Conditions, and will block users who make repeated violations. We ask all readers to expect diversity of opinion and to treat one another with dignity and respect.