Beyond SOA and REST for Distributed Application Integration

Beyond SOA and REST for Distributed Application Integration

DOI: 10.4018/978-1-5225-5829-3.ch011
OnDemand:
(Individual Chapters)
Available
$37.50
No Current Special Offers
TOTAL SAVINGS: $37.50

Abstract

The fundamental problem of distributed application integration is reducing application coupling as much as possible while still meeting the minimum interoperability requirements. Service-oriented architecture (SOA) and representational state transfer (REST) are the most used architectural styles to deal with this problem. This chapter performs a comparative study of these styles and shows that, while both solve basic interoperability, neither of them minimizes coupling, since data description schemas are shared by the interacting applications (symmetric interoperability). SOA is oriented towards behavior (services) and REST towards state (structured resources). Services have no structure and resources have a fixed service. This chapter proposes a new architectural style, structured services, that combines the best characteristics of SOA and REST (services can have structure and resources can implement application-specific services), while using asymmetric interoperability (schema compatibility is based on structural compliance and conformance) to minimize application coupling.
Chapter Preview
Top

Introduction

A software application is usually complex and programming it involves modeling the entities of the problem domain by modules that need to interact to achieve the goals that justify the purpose of that application. In addition, the context and specifications of the problem are dynamic and typically change frequently. Complexity and changeability have always been a huge challenge for software developers, affecting not only applications but also virtually all aspects of computer science.

The object-oriented modeling paradigm, in particular through the Unified Modeling Language (UML) (Dennis, Wixom, & Tegarden, 2015), has long been recognized as an adequate solution to these difficulties. The main tenet is to divide and conquer complexity by structuring programs into objects, according to principles that tend to limit the impact of a change, by reducing dependencies between objects, and allowing them to be incrementally adapted through inheritance. Table 1 describes the main relevant principles.

Ideally, one would like to extend these principles to interacting objects in a distributed environment. Unfortunately, most of the advantages of the object-oriented paradigm, namely inheritance and polymorphism, stem from the fact that the lifecycles of the objects are coupled, either at compile or link time, which is not the case for distributed applications. These are loosely coupled and evolve independently, but need nonetheless to interact and cooperate towards some common goals. As one application changes, all the others that use it must also be adapted, in order to maintain interoperability.

Table 1.
Main principles of object-oriented modeling
IdNameDescription
P1Least semantic gapThe entities in the problem and solution spaces should have a one to one mapping, by modeling each problem entity with a solution entity, with both state and related behavior, and corresponding structures.
P2Information hidingThere must be a clear separation between interface (syntax and semantics) and its implementation. This reduces the change propagation effect. A change in one object affects those that use it only if its interface is affected.
P3SubstitutionAn object X should be able to be used with its own implementation wherever an object Y is expected, as long as X conforms to Y, a form of polymorphism.
P4Non-duplication of informationObjects with similar features (state or behavior) should factor these features and share a common definition, usually implemented by inheritance, instead of duplicating it.
P5Open-closedAn object should be closed, so that it can be used, but at the same time open, so that it can be changed without having to close it. This means that it is possible to tune up objects by redefining operations, even if the source code is not available.

Complete Chapter List

Search this Book:
Reset