BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage Articles Service-Oriented Architecture and Legacy Systems

Service-Oriented Architecture and Legacy Systems

Bookmarks

This article first appeared in IEEE Software magazine. IEEE Software offers solid, peer-reviewed information about today's strategic technology issues. To meet the challenges of running reliable, flexible enterprises, IT managers and technical leads rely on IT Pro for state-of-the-art solutions.

 

Enterprise systems are quickly evolving from monolithic silos to distributed applications with service-oriented exible usage schemes. To keep up, IT organizations must adapt their legacy systems to meet changing business challenges almost in real time, with no second chances. Service-oriented architectures (SOAs) have evolved to exibly operate and federate business processes and underlying systems. Authors Nicolas Serrano, Josune Hernantes, and Gorka Gallardo provide an overview of current SOA technologies and how to evolve in legacy environments. I look forward to hearing from both readers and prospective column authors about this column and the technologies you want to know more about. — Christof Ebert

Today’s business must be able to flexibly and quickly adapt to market needs, but even minor changes to processes can involve rework in multiple IT systems that were originally designed as application silos. To stay competitive, maintenance efforts must be reduced, yet IT systems must continue to evolve. Service-oriented architecture (SOA) enables the transition from a silo-based system to a service-oriented one. It facilitates loose coupling, abstraction of underlying logic, fl exibility, reusability, and discoverability. 1,2 The SOA Manifesto outlines additional guiding principles.

SOA Primer SOA’s novelty is in how it designs infrastructure architecture based on services instead of focusing on entire applications. Services are small, discrete units of software that provide a specific functionality and can be reused in multiple applications. SOA applies a loose-coupling design principle, which means that each service is an isolated entity with limited dependencies on other shared resources such as databases, legacy applications, or APIs. It helps provide an abstraction layer between producers and consumers, which promotes fl exibility in changing service implementations without impacting consumers. SOA offers several benefi ts to busi- nesses, but it isn’t the best architectural choice for all cases. On the plus side, it:

  • provides a natural way to modularize complex systems by integrating services from different vendors independent of platform and technology;
  • promotes loose coupling, helping the interface with legacy systems;
  • increases efficiency by allowing applications to be reused, thus reducing cost and development time;
  • improves flexibility and scalability because multiple services can be easily developed from the integration of existing applications;
  • allows a reduction of costs associated with maintenance;
  • enables standards-based interoperability between systems;
  • provides location independence to access data via any channel such as smartphones, tablets, or laptops; and
  • allows an incremental approach to be taken, which helps meet customer demands faster by adding new services in response to specific business needs. However, on the minus side, it
  • is difficult to implement asynchronous communication between applications;
  • is challenging to implement real-time responses or high data transfers because XML brings robustness, not speed (although there are other alternatives such as JSON);
  • has numerous security vulnerabilities due to process-sharing applications and systems; and
  • involves complex transaction management in interactions between logically separate systems.

Moving to SOA isn’t easy, and enterprises wishing to do so must be aware of the difficulties and inherent issues. Needless to say, every IT organization will experience multiple tradeoffs with SOA implementations; your mileage may vary. For effi ciency and fl exibility we recommend an incremental transition to SOA in legacy environments.

Web Services

Web services are, for most organizations, the simplest approach for implementing a loosely coupled architecture. This interoperability is gained through a set of XML-based open standards such as WSDL, SOAP, and UDDI to provide a common approach for defi ning, publishing, and using Web services .

Web services evolved from Web applications. In fact, they’re a simplification of Web applications: in- stead of serving the user interface along with the data, they only serve the data; the client application is in charge of presenting the information. Consequently, Web services are the most common way to implement a SOA—indeed, many systems use Web services without defining them as a SOA.

The main advantage of SOA (and therefore of Web services) is that the same service can be consumed by different clients. The data that was originally designed for a Web application to consume can be used, without any modifi cation, by any other type of client. Examples include desktop applications that get data from a server without providing explicit SQL queries of the database or external systems such as a vending or public client information point that gets its data from a SOA service.

A legacy system can be wrapped as a SOA service and respond directly to the HTTP protocol or work behind a proxy that translates the request to the legacy system’s language. Ultimately, the message in HTTP is plaintext, which any system or programming language can produce.

Technologies

SOA is a good option for building more fl exible applications, but choosing the right technology to achieve it will depend on your needs and environment. Let’s review the most relevant technology considerations for organizations wishing to adopt SOA in their own business processes.

SOAP vs. REST

When designing a Web service, we need to define the set of rules we’re going to use to exchange information. The main tools for doing this today are SOAP and REST. 3 SOAP is the older protocol; it was developed as an Internet-capable alternative to established technologies such as CORBA. SOAP can use various transports (HTTP, SMTP, and so on), which gives it more fl exibility. Data is exchanged in XML, so some performance issues could arise if the amount of information or messages transferred is high. SOAP can be used with Web Services Security, a standard for signing and encrypting messages that offers more secure information exchange. 4

REST is a newer protocol that uses HTTP transport, but it can handle several data formats (XML, JSON, and so on); it relies on a specific URL instead of XML. REST is a lightweight alternative to SOAP. Because it doesn’t impose a rigid implementation, it has a higher degree of fl exibility, is lighter, and is less dependent on documentation. As REST can use GET methods, as opposed to the POST-only SOAP implementation, caching can happen not only in the service’s design but also on the infrastructure side.

Choosing REST or SOAP will depend on an organization’s needs and constraints. Sometimes, you’re better off with the enterprise capabilities that SOAP offers, or maybe you would benefi t from a more performant and lightweight alternative such as REST. Because SOAP has better security and error-handling capabilities, most enterprise IT shops regard it as their preferred Web service implementation. Simplicity, performance, and a less rigid implementation all make REST the preferred implementation for those working on the collaboration APIs found in Internet services (see the sidebar for an example).

Legacy Modernization

Although SOA architecture can be the best alternative for seamlessly integrating enterprise systems and avoiding the headaches of protocols 5 and platforms, most people need to deal with an existing infrastructure. There’s no perfect solution to the problem of modernizing legacy systems as you try to adopt a SOA architecture because a variety of aspects come into play. You need to take into consideration the current technological stack to make the optimal transition based on overall cost and risk.

Because legacy systems usually support key business processes, a step-by-step change plan should be developed and a feasible evolution of the current systems using a hybrid approach should be designed to achieve a pure SOA architecture. There are several strategies for converting legacy systems to SOA.

The first approach is to replace the current legacy system with another system or set of systems. Normally, this is a good way to go if a current commercial off-the-shelf system (COTS) option matches the legacy system’s requirements and functionalities. This solution reduces maintenance but increases costs in future modifications. A second alternative is to wrap the current legacy system with a middleware that can offer the legacy system interface through a Web service. In this way, legacy functionality is “wrapped” with a service layer and “plugged” into a SOA environment. This might not solve some of your problems: the legacy application can integrate several possible services, and you won’t get the expected decoupling. However, it’s a good option when the legacy system is expensive to rewrite, can be reused, and requires a cost-effective solution. Finally, the third alternative is to redevelop or recode the current legacy system. This can be a very good approach, as you can act on the application architecture and achieve the optimal levels of decoupling. However, legacy applications are normally critical, and they’re sometimes difficult or expensive to change due to the old technologies involved and the lack of documentation, which could lead to some problems and increase the project risk. In this case, correctly assessing all the involved risks is a must.

Enterprise Application Integration

When planning for application integration in any SOA initiative, many vendor products can help you ease into the transition. However, the different offerings range in capability and complexity, so selecting the right one is vital for success. You can divide the alternatives into three different groups based on the level of integration complexity (See Figure 1):

  • Integration frameworks are the lightest of the alternatives and are basically formed by the libraries that implement APIs for   different development environments. Examples of these integration frameworks are Apache Camel and Spring Integration in the Java environment and NServiceBus for .NET.
  • Enterprise Service Bus (ESB) products offer integration framework capabilities plus tools for deployment, administration, and monitoring at runtime. ESB supports the connections between service producers and consumers, thereby offering the advantage of better tooling, which reduces cost and complexity signifi cantly and solves integration problems at a higher abstraction level. Exam- ples of ESB products are Oracle Service Bus and Mule ESB.
  • Integration suites offer a com- plete stack that not only gives ESB capabilities but also more   business-specific tools such as BPM (business process management), business activity monitoring, master data management, and a repository. All of these features help you respond to changes more quickly.   It’s difficult to understand how competing solutions stack up against one another, so Table 1 compares these three integration solutions.

Making Choices

Obviously, the best alternative depends on specific needs and complexity. First, you must decide whether a framework is suffi cient. For instance, if you have only two applications to connect or you can work with a single technology (such as REST), you might opt for the simplest approach (integration framework) in spite of the scarcity of tools and support; otherwise, an ESB is the better choice. However, if additional features are required, you might be better off with a more capable and complex stack such as an integration suite. 

The next evolutionary step forward will be how to make the convergence of SOA and cloud computing easier. The rise of the cloud has brought advantages to enterprise: cloud computing provides resources you can leverage on demand, including those that host data, services, and processes. You can extend your SOA outside of the enterprise firewall to cloud computing providers.

(Click on the image to enlarge it)

Thus, cloud integration is one of the main challenges enterprises are dealing with today. In this context, iPaaS (integration platform as a service) is emerging as a suitable option  for a wide range of integration needs. iPaaS is a suite of cloud services that enable users to create, manage, and govern integration flows connecting a wide range of applications or data sources without installing or managing any hardware or middleware.

Looking to the future, research firm Gartner predicts that by 2016, at least 35 percent of all large and midsize organizations worldwide will be using one or more iPaaS offerings in some form. However, experts opine that iPaaS won’t replace SOA: traditional SOA will still be required for complex integration scenarios such as low-latency messaging and dataintensive transactions within and between enterprises.

References

  1. N. Gold et al., “Understanding ServiceOriented Software,” IEEE Software, vol. 21, no. 2, 2004, pp. 71–77.
  2. S. Jones, “Toward an Acceptable Definition of Service,” IEEE Software, vol. 22, no. 3, 2005, pp. 87–93.
  3. S. Mumbaikar and P. Padiya, “Web Services Based on SOAP and REST Principles,”   Int’l J. Scientific and Research Publications, vol. 3, no. 5, 2013, pp. 1–4.
  4. P. Louridas, “SOAP and Web Services,” IEEE Software, vol. 23, no. 6, 2006, pp. 62– 67.
  5. S. Vinoski, “REST Eye for SOA Guy,” IEEE Internet Computing, vol. 11, no. 1, 2007, pp. 82–84.

About the Authors

Nicolas Serrano is a professor of computer science and software engineering at the University of Navarra’s School of Engineering. His research interests include information technology and its application to personal and professional development. Contact him at nserrano@tecnun.es.

 

Josune Hernantes is a professor of computer science and software engineering at the University of Navarra’s School of Engineer- ing. Her research interests include software engineering and information systems. Hernantes received a PhD in computer science from the University of Navarra’s School of Engineering. Contact her at jhernantes@tecnun.es.

Gorka Gallardo is a professor of information systems at the University of Navarra’s School of Engineering. His research interests include information technology. Contact him at ggallardo@tecnun.es.

 

 

This article first appeared in IEEE Software magazine. IEEE Software offers solid, peer-reviewed information about today's strategic technology issues. To meet the challenges of running reliable, flexible enterprises, IT managers and technical leads rely on IT Pro for state-of-the-art solutions.

Rate this Article

Adoption
Style

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • EAI section looks like a copy&paste from my articles and slides!

    by Kai Wähner,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Funny to read an article and thinking that it could be my article... A reference would be nice, at least...

    www.slideshare.net/KaiWaehner/spoilt-for-choice...

    www.infoq.com/articles/ESB-Integration

    Best regards,
    Kai

  • REST Protocol

    by Jerome St-Pierre,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    I wasn't aware that REST is a protocol.

  • Architecting #cloud-friendly application architecture #apparch (inspired by #microservices)

    by Alexander SAMARIN,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Thank you for inspiration - "Architecting #cloud-friendly application architecture #apparch (inspired by #microservices)" improving-bpm-systems.blogspot.ch/2015/04/archi...

    Thanks,
    AS

  • loosely couple ?

    by Erik Gollot,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    How SOA or webservice lead to a loosely couple architecture ?
    And modernize legacy system ?
    Ok in technical terms it helps to make a system, new or old, to be used by new systems or by more technologies. But without any work on the semantic of the information each service carry, no magic !
    I think we too often forget the semantic and talk too much about technology and introduce a big big confusion.
    My two cents...

  • Warning for innocent decision makers

    by Dejan Rudic,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    As simplified overview of SOA, I appreciate this article and find it quite sound. It raises the issue of value-for-money and this is generally good for non-technical people, trying to figure out want to do.

    But, this article lacks of the more important SOA integration related issues, such as decoupling of legacy workflows, system (re)designs and other pre-requisites for SOA. I am really tired explaining to business owners what they have to invest into, it is always the same story - couple of WSs, some powerful tool to connect them and voila, we have SOA. You article actually suggest that - tell developers to install Spring I and we are tender compliant!

    SOA is not a tool, nor set of them. SOA is a concept.

    And the road from concept to the actual product is hard and bumpy, paying off at the very end...

    Dejan

  • Warning for innocent decision makers

    by Dejan Rudic,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    As simplified overview of SOA, I appreciate this article and find it quite sound. It raises the issue of value-for-money and this is generally good for non-technical people, trying to figure out want to do.

    But, this article lacks of the more important SOA integration related issues, such as decoupling of legacy workflows, system (re)designs and other pre-requisites for SOA. I am really tired explaining to business owners what they have to invest into, it is always the same story - couple of WSs, some powerful tool to connect them and voila, we have SOA. You article actually suggest that - tell developers to install Spring I and we are tender compliant!

    SOA is not a tool, nor set of them. SOA is a concept.

    And the road from concept to the actual product is hard and bumpy, paying off at the very end...

    Dejan

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT