SlideShare ist ein Scribd-Unternehmen logo
1 von 6
ERA OF Enterprise Application Integration (Middleware)
The Pre-Enterprise Application Integration Era:
There were large number of companies who bought in the 1990s the idea of packaged software solutions. These
solutions came from companies such as SAP, PeopleSoft, JDEdwards, Siebel, Oracle ERP, etc with the idea that it
would be able to solve most if not all of the problems ailing the particular company. In many cases, although the
packaged software solutions worked well individually, it was nigh impossible to integrate them with Z systems
within the enterprise. In most cases, each system produced redundant sets of information such as customer
information. The result of this was that when something like customer data changed, the company was required
to have someone manually updated the same information in other system. As can be imagined, this situation
became not only costly but cumbersome as well as data across systems became inconsistent due to the sheer
effort required to keep the data synchronized. The problems that cropped up with double data entry,
inconsistent data, and data isolation problems, forced companies to ultimately seek to find a solution to
integrate the systems. It is out of this search that the area of enterprise application integration (EAI) was born.
What is Enterprise application integration?
EAI is an architectural style for integrating disparate services and data in software. EAI looks to simplify and
automate business processes without the need for comprehensive changes to the existing applications and data
structures. As the organization evolves over time, it creates new departments with specific areas of focus,
interests, and expertise as well as merges with other organizations. Within this organization, all the departments
must work together, sharing business processes and data in order to achieve the overall goals and vision of the
organization. New business processes develop over time to help achieve new goals or further realize existing
goals. This can be done by either the purchase or development of software applications whose purpose is to
support said business processes. In this case, organizations can end up with a wide range of sometimes
overlapping, conflicting, or incompatible applications and systems. Many of these applications run on different
operating systems, support different databases, and are written in different computer languages. It
is a big challenge to bridge the gap of these disparate applications and services, due to their technical
incompatibilities as well as the prohibitive costs of cross-training personnel in the various systems.
The Problems of Point-to-point Integration:
In order to address the problems around the sharing and integration of data, EAI developers chose to pursue
point-to-point solutions initially as they find it easy to understand, quick to implement and low in cost when they
were only just a few systems to integrate. In a point-to-point integration, one application would make direct
database calls to another application's database tables using an API like JDBC (i.e. Java Database Connection).
Initially, it would seem that this way of integrating two applications using point-to-point integration solution
would be the best choice. The problem is that beyond a very small number of applications, as you integrate
more and more applications, the situation becomes more difficult to manage. This is shown in the figure below:
ERA OF Enterprise Application Integration (Middleware)
Created by-Shantanu Thakre. Page 2
Figure: Late Stage Point-to-Point Integration
An infrastructure based on strictly point-to-point methods of integration has proved to be brittle. Each
application ends up tightly coupled with the other applications through their point-to-point links. This
leads to a situation where even slight changes in one application can break the integration links with
other applications integrated. Also the number of integration points required to support increases as new
applications are added. For example, when you have five applications integrated with each other, they
will require 10 different integration points. This means that each additional application that needs to be
integrated will be not only harder to integrate but also to maintain over its lifecycle. This is demonstrated
in the figure below:
ERA OF Enterprise Application Integration (Middleware)
Created by-Shantanu Thakre. Page 3
Figure: Multiple Point-to-Point Connections
In order we need an intermediate layer to isolate changes in one application from the others.
Benefits of Middleware-based Integration:
The intermediate layer that can serve to isolate the changes in any application is middleware. The
task of middleware is to provide a mediation point between applications. Middleware supplies generic
interfaces with can be used by all integrated applications in order to pass messages to each other. Each
interface serves to provide access to business processes provided by the integrated application. This type
of middleware is used quite frequently in the development of service oriented architecture (SOA). The
figure below shows a conceptual example of the use of middleware for integrating applications and
services in a SOA:
ERA OF Enterprise Application Integration (Middleware)
Created by-Shantanu Thakre. Page 4
Figure: Middleware-based integration
The use of a service-oriented architecture allows you to swap in and out applications without impacting
on existing applications connected to the middleware. In contrast to point to point integration, there is a
one to one correspondence between applications and integration points. For example, if there are ten
applications that are to be integrated into your IT landscape, there will only be ten integration points.
These middleware-based solutions can easily support large numbers of integrated applications while at
the same time requiring less maintenance.
Benefits of EAI
An EAI based on the mediator pattern using middleware allows you to perform complex operations such
as transformations, aggregation, routing, splitting, and converting messages as well as using
orchestration to create new business process that uses the data and business processes of the various
applications in ways that previously was impossible. In return for the upfront costs of the complexity of
setting up and configuring the middleware, you are able to leverage and exploit your integration
architecture in ways that were previously unimaginable. The EAI architecture generally provides the
following benefits:
* Reusability - services are able to perform a set of operations that are described and
accessed through an interface. These interfaces enable interoperability between services
and promote the reuse of functionality.
*Encapsulation - services are encapsulated on each tier. They are accessible only
through the interface. The client of the service has no knowledge of the internal details of
a service. This allows for the implementation of the service to be modified without
impacting on systems that access this interface for this service.
*Distribution - the access to a particular service can be distributed and/or replicated
across many computers without modifications to the source code of clients. The
ERA OF Enterprise Application Integration (Middleware)
Created by-Shantanu Thakre. Page 5
communication details are handled by the middleware layer, thus achieving location
transparency.
*Partitioning - this puts the functionality in the appropriate tiers so that we can then
build thin clients, build a middle tier that encapsulates all of the business logic, and build
the resource tier to address all issues related to data persistence. This use of abstraction
layers means that we can achieve flexible deployment options and configurations.
*Scalability - allows for the matching of the capacity of the middle tier to the client
demands by use of performance optimization techniques in the middle tier as well as the
ability to physically distribute and replicate the critical services enables good control over
the scalability over a long time period.
*Enhanced performance - applications leverage server-side optimization techniques
such as multiprocessing, multithreading, pooling, resource and instance management, and
thread management, without changing code and allowing dynamic configuration changes.
*Improved reliability - this avoids single points of failure and bottlenecks by the use of
replication and distribution.
*Manageability - By separating services into multiple tiers, it makes it easier to locate
services that need to be modified. The most frequent changes are made to those processes
in the business tier. These changes can be done without costly and time-consuming re-
installations. It is all centrally managed.
*Increased consistency and flexibility - as long as there are no changes to interfaces
between and inside the tiers, the code can be modified without impacting other parts of
the system. Multi-tier architectures are easier for adapting information systems to the
changing business needs over time. A change in the business tier services will consistently
effect all applications.
*Support for multiple clients - clients using devices of different form factors (i.e.
computers, tablets, smartphones) can access the business logic through the same
interface.
*Independent development - services can be developed independently of other
services. The interface between services defines the contract between them enabling them
to be developed independently as long as the contracts are respected.
*Rapid development - application developers are able to focus on rapidly development
and deployment of business functionality while remaining transparent to the underlying
infrastructure. Services can then be used in unpredictable combinations to form
applications.
*Composition - services can be composed in a variety of ways previously unimagined.
This provides great flexibility and support for business processes.
*Configurable - different implementations of the same service can be swapped at run-
time, enabling you to provide the capabilities that you need without redesigning
applications.
ERA OF Enterprise Application Integration (Middleware)
Created by-Shantanu Thakre. Page 6
*Security - the measures that are applied to address different aspects of security, such as
authorization, authentication, confidentiality, non-repudiation, etc. require caution.

Weitere ähnliche Inhalte

Was ist angesagt?

Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
mfrancis
 

Was ist angesagt? (20)

Mba ii u v enterprise application integration
Mba ii u v enterprise application integrationMba ii u v enterprise application integration
Mba ii u v enterprise application integration
 
Getting started with Enterprise Application Integration (EAI) using Enterpris...
Getting started with Enterprise Application Integration (EAI) using Enterpris...Getting started with Enterprise Application Integration (EAI) using Enterpris...
Getting started with Enterprise Application Integration (EAI) using Enterpris...
 
Enterprise application integration
Enterprise application integrationEnterprise application integration
Enterprise application integration
 
Introduction to Integration Technologies
Introduction to Integration TechnologiesIntroduction to Integration Technologies
Introduction to Integration Technologies
 
ICTA Technology Meetup 01 - Enterprise Application Integration
ICTA Technology Meetup 01 - Enterprise Application IntegrationICTA Technology Meetup 01 - Enterprise Application Integration
ICTA Technology Meetup 01 - Enterprise Application Integration
 
The Impact of SOA on Traditional Middleware Technologies
The Impact of SOA on Traditional Middleware TechnologiesThe Impact of SOA on Traditional Middleware Technologies
The Impact of SOA on Traditional Middleware Technologies
 
Meeting Mobile and BYOD Security Challenges
Meeting Mobile and BYOD Security ChallengesMeeting Mobile and BYOD Security Challenges
Meeting Mobile and BYOD Security Challenges
 
Enterprise Application Integration Technologies
Enterprise Application Integration TechnologiesEnterprise Application Integration Technologies
Enterprise Application Integration Technologies
 
Introduction to integration
Introduction to integrationIntroduction to integration
Introduction to integration
 
Integration intervention: Get your apps and data up to speed
Integration intervention: Get your apps and data up to speedIntegration intervention: Get your apps and data up to speed
Integration intervention: Get your apps and data up to speed
 
Adapters and EAI
Adapters and EAIAdapters and EAI
Adapters and EAI
 
EAI (Integration) and Mulesoft
EAI (Integration) and MulesoftEAI (Integration) and Mulesoft
EAI (Integration) and Mulesoft
 
Define enterprise integration strategy by industry leader bhawani nandanprasad
Define enterprise integration strategy by industry leader bhawani nandanprasadDefine enterprise integration strategy by industry leader bhawani nandanprasad
Define enterprise integration strategy by industry leader bhawani nandanprasad
 
7 eai-patterns
7 eai-patterns7 eai-patterns
7 eai-patterns
 
Management in Informatica Power Center
Management in Informatica Power CenterManagement in Informatica Power Center
Management in Informatica Power Center
 
Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
Keynote - The Benefits of an Open Service Oriented Architecture in the Enterpr...
 
Informatica PowerCenter : Agile Data Integration Tool
Informatica PowerCenter : Agile Data Integration ToolInformatica PowerCenter : Agile Data Integration Tool
Informatica PowerCenter : Agile Data Integration Tool
 
Why Enterprise Service Bus (ESB)
Why Enterprise Service Bus (ESB)Why Enterprise Service Bus (ESB)
Why Enterprise Service Bus (ESB)
 
ETL Using Informatica Power Center
ETL Using Informatica Power CenterETL Using Informatica Power Center
ETL Using Informatica Power Center
 
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
5 Reasons To Choose Informatica PowerCenter As Your ETL Tool
 

Andere mochten auch

Topic2 Understanding Middleware
Topic2 Understanding MiddlewareTopic2 Understanding Middleware
Topic2 Understanding Middleware
sanjoysanyal
 
Middleware Basics
Middleware BasicsMiddleware Basics
Middleware Basics
Varun Arora
 

Andere mochten auch (18)

Integration strategy for large erp deployments
Integration strategy for large erp deploymentsIntegration strategy for large erp deployments
Integration strategy for large erp deployments
 
Application integration in the age of APIs
Application integration in the age of APIsApplication integration in the age of APIs
Application integration in the age of APIs
 
Integrated Business Process Management System
Integrated Business Process Management SystemIntegrated Business Process Management System
Integrated Business Process Management System
 
Smart first, Phones later (Tin Kadoic)
Smart first, Phones later (Tin Kadoic)Smart first, Phones later (Tin Kadoic)
Smart first, Phones later (Tin Kadoic)
 
Building API Integrations You Can Live With
Building API Integrations You Can Live WithBuilding API Integrations You Can Live With
Building API Integrations You Can Live With
 
Middleware systems overview and introduction
Middleware systems overview and introductionMiddleware systems overview and introduction
Middleware systems overview and introduction
 
AIA 4 Iowa Apps User Group
AIA 4 Iowa Apps User GroupAIA 4 Iowa Apps User Group
AIA 4 Iowa Apps User Group
 
BPM for SOA+ESB+API and cloud
BPM for SOA+ESB+API and cloud BPM for SOA+ESB+API and cloud
BPM for SOA+ESB+API and cloud
 
Application integration framework & Adaptor ppt
Application integration framework & Adaptor pptApplication integration framework & Adaptor ppt
Application integration framework & Adaptor ppt
 
Ariba Network Integration
Ariba Network IntegrationAriba Network Integration
Ariba Network Integration
 
Enterprise Integration Patterns with Spring integration!
Enterprise Integration Patterns with Spring integration!Enterprise Integration Patterns with Spring integration!
Enterprise Integration Patterns with Spring integration!
 
middleware
middlewaremiddleware
middleware
 
Topic2 Understanding Middleware
Topic2 Understanding MiddlewareTopic2 Understanding Middleware
Topic2 Understanding Middleware
 
Middleware
MiddlewareMiddleware
Middleware
 
Icinga Camp Berlin 2017 - Integrations all the way
Icinga Camp Berlin 2017 - Integrations all the wayIcinga Camp Berlin 2017 - Integrations all the way
Icinga Camp Berlin 2017 - Integrations all the way
 
Middleware Basics
Middleware BasicsMiddleware Basics
Middleware Basics
 
Modern Enterprise integration Strategies
Modern Enterprise integration StrategiesModern Enterprise integration Strategies
Modern Enterprise integration Strategies
 
Introduction to Business Process Management
Introduction to Business Process ManagementIntroduction to Business Process Management
Introduction to Business Process Management
 

Ähnlich wie Enterprise Application integration (middleware) concepts

whitepaper_workday_technology_platform_devt_process
whitepaper_workday_technology_platform_devt_processwhitepaper_workday_technology_platform_devt_process
whitepaper_workday_technology_platform_devt_process
Eric Saraceno
 
AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06
Jay van Zyl
 

Ähnlich wie Enterprise Application integration (middleware) concepts (20)

Mis 20021241104 20021241103_20021241148_20021241155_20021241149_eai and flexi...
Mis 20021241104 20021241103_20021241148_20021241155_20021241149_eai and flexi...Mis 20021241104 20021241103_20021241148_20021241155_20021241149_eai and flexi...
Mis 20021241104 20021241103_20021241148_20021241155_20021241149_eai and flexi...
 
How Enterprise Application Integration is Driving Growth.pdf
How Enterprise Application Integration is Driving Growth.pdfHow Enterprise Application Integration is Driving Growth.pdf
How Enterprise Application Integration is Driving Growth.pdf
 
whitepaper_workday_technology_platform_devt_process
whitepaper_workday_technology_platform_devt_processwhitepaper_workday_technology_platform_devt_process
whitepaper_workday_technology_platform_devt_process
 
Point-to-Point vs. MEAP - The Right Approach for an Integrated Mobility Solut...
Point-to-Point vs. MEAP - The Right Approach for an Integrated Mobility Solut...Point-to-Point vs. MEAP - The Right Approach for an Integrated Mobility Solut...
Point-to-Point vs. MEAP - The Right Approach for an Integrated Mobility Solut...
 
The Eight Building Blocks of Enterprise Application Architecture
The Eight Building Blocks of Enterprise Application ArchitectureThe Eight Building Blocks of Enterprise Application Architecture
The Eight Building Blocks of Enterprise Application Architecture
 
AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06AA using WS vanZyl 2002-05-06
AA using WS vanZyl 2002-05-06
 
Understanding the basic need of Service Oriented Architecture and getting sta...
Understanding the basic need of Service Oriented Architecture and getting sta...Understanding the basic need of Service Oriented Architecture and getting sta...
Understanding the basic need of Service Oriented Architecture and getting sta...
 
Understanding the Advantages, Difficulties, and Solutions of Enterprise Appli...
Understanding the Advantages, Difficulties, and Solutions of Enterprise Appli...Understanding the Advantages, Difficulties, and Solutions of Enterprise Appli...
Understanding the Advantages, Difficulties, and Solutions of Enterprise Appli...
 
From Components To Services
From Components To ServicesFrom Components To Services
From Components To Services
 
The F5 Networks Application Services Reference Architecture (White Paper)
The F5 Networks Application Services Reference Architecture (White Paper)The F5 Networks Application Services Reference Architecture (White Paper)
The F5 Networks Application Services Reference Architecture (White Paper)
 
integeration
integerationintegeration
integeration
 
Unit V
Unit VUnit V
Unit V
 
apidays LIVE Paris 2021 - APIs - How did we get here and where are we going n...
apidays LIVE Paris 2021 - APIs - How did we get here and where are we going n...apidays LIVE Paris 2021 - APIs - How did we get here and where are we going n...
apidays LIVE Paris 2021 - APIs - How did we get here and where are we going n...
 
Software application architecture
Software application architectureSoftware application architecture
Software application architecture
 
Le cloudvupardesexperts 9pov-curationparloicsimon-clubclouddespartenaires
Le cloudvupardesexperts 9pov-curationparloicsimon-clubclouddespartenairesLe cloudvupardesexperts 9pov-curationparloicsimon-clubclouddespartenaires
Le cloudvupardesexperts 9pov-curationparloicsimon-clubclouddespartenaires
 
International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...
 
CONFIGURATION INERPSAAS MULTI-TENANCY
CONFIGURATION INERPSAAS MULTI-TENANCYCONFIGURATION INERPSAAS MULTI-TENANCY
CONFIGURATION INERPSAAS MULTI-TENANCY
 
Configuration inerpsaas multi tenancy
Configuration inerpsaas multi tenancyConfiguration inerpsaas multi tenancy
Configuration inerpsaas multi tenancy
 
Asymetric Modernization
Asymetric ModernizationAsymetric Modernization
Asymetric Modernization
 
INTEGRATIVE PROGRAMMING ch1.pptx
INTEGRATIVE PROGRAMMING ch1.pptxINTEGRATIVE PROGRAMMING ch1.pptx
INTEGRATIVE PROGRAMMING ch1.pptx
 

Kürzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Kürzlich hochgeladen (20)

Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

Enterprise Application integration (middleware) concepts

  • 1. ERA OF Enterprise Application Integration (Middleware) The Pre-Enterprise Application Integration Era: There were large number of companies who bought in the 1990s the idea of packaged software solutions. These solutions came from companies such as SAP, PeopleSoft, JDEdwards, Siebel, Oracle ERP, etc with the idea that it would be able to solve most if not all of the problems ailing the particular company. In many cases, although the packaged software solutions worked well individually, it was nigh impossible to integrate them with Z systems within the enterprise. In most cases, each system produced redundant sets of information such as customer information. The result of this was that when something like customer data changed, the company was required to have someone manually updated the same information in other system. As can be imagined, this situation became not only costly but cumbersome as well as data across systems became inconsistent due to the sheer effort required to keep the data synchronized. The problems that cropped up with double data entry, inconsistent data, and data isolation problems, forced companies to ultimately seek to find a solution to integrate the systems. It is out of this search that the area of enterprise application integration (EAI) was born. What is Enterprise application integration? EAI is an architectural style for integrating disparate services and data in software. EAI looks to simplify and automate business processes without the need for comprehensive changes to the existing applications and data structures. As the organization evolves over time, it creates new departments with specific areas of focus, interests, and expertise as well as merges with other organizations. Within this organization, all the departments must work together, sharing business processes and data in order to achieve the overall goals and vision of the organization. New business processes develop over time to help achieve new goals or further realize existing goals. This can be done by either the purchase or development of software applications whose purpose is to support said business processes. In this case, organizations can end up with a wide range of sometimes overlapping, conflicting, or incompatible applications and systems. Many of these applications run on different operating systems, support different databases, and are written in different computer languages. It is a big challenge to bridge the gap of these disparate applications and services, due to their technical incompatibilities as well as the prohibitive costs of cross-training personnel in the various systems. The Problems of Point-to-point Integration: In order to address the problems around the sharing and integration of data, EAI developers chose to pursue point-to-point solutions initially as they find it easy to understand, quick to implement and low in cost when they were only just a few systems to integrate. In a point-to-point integration, one application would make direct database calls to another application's database tables using an API like JDBC (i.e. Java Database Connection). Initially, it would seem that this way of integrating two applications using point-to-point integration solution would be the best choice. The problem is that beyond a very small number of applications, as you integrate more and more applications, the situation becomes more difficult to manage. This is shown in the figure below:
  • 2. ERA OF Enterprise Application Integration (Middleware) Created by-Shantanu Thakre. Page 2 Figure: Late Stage Point-to-Point Integration An infrastructure based on strictly point-to-point methods of integration has proved to be brittle. Each application ends up tightly coupled with the other applications through their point-to-point links. This leads to a situation where even slight changes in one application can break the integration links with other applications integrated. Also the number of integration points required to support increases as new applications are added. For example, when you have five applications integrated with each other, they will require 10 different integration points. This means that each additional application that needs to be integrated will be not only harder to integrate but also to maintain over its lifecycle. This is demonstrated in the figure below:
  • 3. ERA OF Enterprise Application Integration (Middleware) Created by-Shantanu Thakre. Page 3 Figure: Multiple Point-to-Point Connections In order we need an intermediate layer to isolate changes in one application from the others. Benefits of Middleware-based Integration: The intermediate layer that can serve to isolate the changes in any application is middleware. The task of middleware is to provide a mediation point between applications. Middleware supplies generic interfaces with can be used by all integrated applications in order to pass messages to each other. Each interface serves to provide access to business processes provided by the integrated application. This type of middleware is used quite frequently in the development of service oriented architecture (SOA). The figure below shows a conceptual example of the use of middleware for integrating applications and services in a SOA:
  • 4. ERA OF Enterprise Application Integration (Middleware) Created by-Shantanu Thakre. Page 4 Figure: Middleware-based integration The use of a service-oriented architecture allows you to swap in and out applications without impacting on existing applications connected to the middleware. In contrast to point to point integration, there is a one to one correspondence between applications and integration points. For example, if there are ten applications that are to be integrated into your IT landscape, there will only be ten integration points. These middleware-based solutions can easily support large numbers of integrated applications while at the same time requiring less maintenance. Benefits of EAI An EAI based on the mediator pattern using middleware allows you to perform complex operations such as transformations, aggregation, routing, splitting, and converting messages as well as using orchestration to create new business process that uses the data and business processes of the various applications in ways that previously was impossible. In return for the upfront costs of the complexity of setting up and configuring the middleware, you are able to leverage and exploit your integration architecture in ways that were previously unimaginable. The EAI architecture generally provides the following benefits: * Reusability - services are able to perform a set of operations that are described and accessed through an interface. These interfaces enable interoperability between services and promote the reuse of functionality. *Encapsulation - services are encapsulated on each tier. They are accessible only through the interface. The client of the service has no knowledge of the internal details of a service. This allows for the implementation of the service to be modified without impacting on systems that access this interface for this service. *Distribution - the access to a particular service can be distributed and/or replicated across many computers without modifications to the source code of clients. The
  • 5. ERA OF Enterprise Application Integration (Middleware) Created by-Shantanu Thakre. Page 5 communication details are handled by the middleware layer, thus achieving location transparency. *Partitioning - this puts the functionality in the appropriate tiers so that we can then build thin clients, build a middle tier that encapsulates all of the business logic, and build the resource tier to address all issues related to data persistence. This use of abstraction layers means that we can achieve flexible deployment options and configurations. *Scalability - allows for the matching of the capacity of the middle tier to the client demands by use of performance optimization techniques in the middle tier as well as the ability to physically distribute and replicate the critical services enables good control over the scalability over a long time period. *Enhanced performance - applications leverage server-side optimization techniques such as multiprocessing, multithreading, pooling, resource and instance management, and thread management, without changing code and allowing dynamic configuration changes. *Improved reliability - this avoids single points of failure and bottlenecks by the use of replication and distribution. *Manageability - By separating services into multiple tiers, it makes it easier to locate services that need to be modified. The most frequent changes are made to those processes in the business tier. These changes can be done without costly and time-consuming re- installations. It is all centrally managed. *Increased consistency and flexibility - as long as there are no changes to interfaces between and inside the tiers, the code can be modified without impacting other parts of the system. Multi-tier architectures are easier for adapting information systems to the changing business needs over time. A change in the business tier services will consistently effect all applications. *Support for multiple clients - clients using devices of different form factors (i.e. computers, tablets, smartphones) can access the business logic through the same interface. *Independent development - services can be developed independently of other services. The interface between services defines the contract between them enabling them to be developed independently as long as the contracts are respected. *Rapid development - application developers are able to focus on rapidly development and deployment of business functionality while remaining transparent to the underlying infrastructure. Services can then be used in unpredictable combinations to form applications. *Composition - services can be composed in a variety of ways previously unimagined. This provides great flexibility and support for business processes. *Configurable - different implementations of the same service can be swapped at run- time, enabling you to provide the capabilities that you need without redesigning applications.
  • 6. ERA OF Enterprise Application Integration (Middleware) Created by-Shantanu Thakre. Page 6 *Security - the measures that are applied to address different aspects of security, such as authorization, authentication, confidentiality, non-repudiation, etc. require caution.