Enterprise application integration

Enterprise application integration

Enterprise Application Integration (EAI) is defined as the uses of software and computer systems architectural principles to integrate a set of enterprise computer applications.

Overview

Supply chain management applications (for managing inventory and shipping), customer relationship management applications (for managing current and potential customers), business intelligence applications (for finding patterns from existing data from operations), and other types of applications (for managing data such as human resources data, health care, internal communications, etc) typically cannot communicate with one another in order to share data or business rules. For this reason, such applications are sometimes referred to as islands of automation or information silos. This lack of communication leads to inefficiencies, wherein identical data are stored in multiple locations, or straightforward processes are unable to be automated.

Enterprise application integration (EAI) is the process of linking such applications within a single organization together in order to simplify and automate business processes to the greatest extent possible, while at the same time avoiding having to make sweeping changes to the existing applications or data structures. In the words of the Gartner Group, EAI is the “unrestricted sharing of data and business processes among any connected application or data sources in the enterprise.” [In its April 2001 report for AIIM International, "Enterprise Applications: Adoption of E-Business and Document Technologies, 2000-2001: Worldwide Industry Study," Gartner defines EAI as "the unrestricted sharing of data and business processes among any connected applications and data sources in the enterprise."
cite journal |url=http://findarticles.com/p/articles/mi_qa3937/is_200203/ai_n9019202 |title=Enterprise application integration |journal=Information Management Journal |date=March/April 2002 |last=Gable |first=Julie |accessdate=2008-01-22
]

One large challenge of EAI is that the various systems that need to be linked together often reside on different operating systems, use different database solutions and different computer languages, and in some cases are legacy systems that are no longer supported by the vendor who originally created them. In some cases, such systems are dubbed "stovepipe systems" because they consist of components that have been jammed together in a way that makes it very hard to modify them in any way.

Improving connectivity

If integration is applied without following a structured EAI approach, point-to-point connections grow across an organization. Dependencies are added on an impromptu basis, resulting in a tangled mess that is difficult to maintain. This is commonly referred to as spaghetti, an allusion to the programming equivalent of spaghetti code. For example:

The number of n connections needed to have a fully meshed point-to-point connections is given by frac{n(n-1)}{2}. Thus, for 10 applications to be fully integrated point-to-point, frac{(10)(9)}{2}, or 45 point-to-point connections are needed.

However, EAI is not just about sharing data between applications; it focuses on sharing both business data and business process. Attending to EAI involves looking at the system of systems, which involves large scale inter-disciplinary problems with multiple, heterogeneous, distributed systems that are embedded in networks at multiple levels.

Purposes of EAI

EAI can be used for different purposes:

*Data (information) Integration: Ensuring that information in multiple systems is kept consistent. This is also known as EII (Enterprise Information Integration).
*Process Integration: Linking business processes across applications.
*Vendor independence: Extracting business policies or rules from applications and implementing them in the EAI system, so that even if one of the business applications is replaced with a different vendor's application, the business rules do not have to be re-implemented.
*Common Facade: An EAI system could front-end a cluster of applications, providing a single consistent access interface to these applications and shielding users from having to learn to interact with different software packages.

EAI patterns

Integration patterns

There are two patterns that EAI systems implement:

*Mediation: Here, the EAI system acts as the go-between or broker between (interface or communicating ) multiple applications. Whenever an interesting event occurs in an application (e.g., new information created, new transaction completed, etc.) an integration module in the EAI system is notified. The module then propagates the changes to other relevant applications.
*Federation: In this case, the EAI system acts as the overarching facade across multiple applications. All accesses from the 'outside world' to any of the applications are front-ended by the EAI system. The EAI system is configured to expose only the relevant information and interfaces of the underlying applications to the outside world, and performs all interactions with the underlying applications on behalf of the requester.

Both patterns are often used concurrently. The same EAI system could be keeping multiple applications in sync (mediation), while servicing requests from external users against these applications (federation).

Access patterns

EAI supports both asynchronous and synchronous access patterns, the former being typical in the mediation case and the latter in the federation case.

Lifetime patterns

An integration operation could be short-lived (e.g., keeping data in sync across two applications could be completed within a second) or long-lived (e.g., one of the steps could involve the EAI system interacting with a human work flow application for approval of a loan that takes hours or days to complete).

EAI topologies

There are two major topologies: hub-and-spoke, and bus. Each has its own advantages and disadvantages. In the hub-and-spoke model, the EAI system is at the center (the hub), and interacts with the applications via the spokes. In the bus model, the EAI system is the bus (or is implemented as a resident module in an already existing message bus or message-oriented middleware).

Technologies

Multiple technologies are used in implementing each of the components of the EAI system:

*Bus/hub: This is usually implemented by enhancing standard middleware products (application server, message bus) or implemented as a stand-alone program (i.e., does not use any middleware), acting as its own middleware.
*Application connectivity: The bus/hub connects to applications through a set of adapters (also referred to as connectors). These are programs that know how to interact with an underlying business application. The adapter performs two-way communication, performing requests from the hub against the application, and notifying the hub when an event of interest occurs in the application (a new record inserted, a transaction completed, etc.). Adapters can be specific to an application (e.g., built against the application vendor's client libraries) or specific to a class of applications (e.g., can interact with any application through a standard communication protocol, such as SOAP or SMTP). The adapter could reside in the same process space as the bus/hub or execute in a remote location and interact with the hub/bus through industry standard protocols such as message queues, web services, or even use a proprietary protocol. In the Java world, standards such as JCA allow adapters to be created in a vendor-neutral manner.
*Data format and transformation: To avoid every adapter having to convert data to/from every other applications' formats, EAI systems usually stipulate an application-independent (or common) data format. The EAI system usually provides a data transformation service as well to help convert between application-specific and common formats. This is done in two steps: the adapter converts information from the application's format to the bus's common format. Then, semantic transformations are applied on this (converting zip codes to city names, splitting/merging objects from one application into objects in the other applications, and so on).
*Integration modules: An EAI system could be participating in multiple concurrent integration operations at any given time, each type of integration being processed by a different integration module. Integration modules subscribe to events of specific types and process notifications that they receive when these events occur. These modules could be implemented in different ways: on Java-based EAI systems, these could be web applications or EJBs or even POJOs that conform to the EAI system's specifications.
*Support for transactions: When used for process integration, the EAI system also provides transactional consistency across applications by executing all integration operations across all applications in a single overarching distributed transaction (using two-phase commit protocols or compensating transactions).

Communication architectures

Currently, there are many variations of thought on what constitutes the best infrastructure, component model, and standards structure for Enterprise application integration. There seems to be consensus that four components are essential for a modern enterprise application integration architecture:

# A centralized broker that handles security, access, and communication. This can be accomplished through integration servers (like the School Interoperability Framework (SIF) Zone Integration Servers) or through similar software like the Enterprise service bus (ESB) model which acts as a SOAP-oriented services manager.
# An independent data model based on a standard data structure. It appears that XML and the use of XML style sheets has become the de facto and in some cases de jure standard.
# A connector, or agent model where each vendor, application, or interface can build a single component that can speak natively to that application and communicate with the centralized broker.
# A system model that defines the APIs, data flow and rules of engagement to the system such that components can be built to interface with it in a standardized way.

Although other approaches like connecting at the database or user-interface level have been explored, they have not been found to scale or be able to adjust. Individual applications can publish messages to the centralized broker and subscribe to receive certain messages from that broker. Each application only requires one connection to the broker. This central control approach can be extremely scalable and highly evolvable.

Enterprise Application Integration is related to middleware technologies such as message-oriented middleware (MOM), and data representation technologies such as XML. Other EAI technologies involve using web services as part of service-oriented architecture as a means of integration. Enterprise Application Integration tends to be data centric. In the near future, it will come to include content integration and business processes.

EAI implementation pitfalls

In 2003 it was reported that 70% of all EAI projects fail. Most of these failures are not due to the software itself or technical difficulties, but due to management issues. Integration Consortium European Chairman Steve Craggs has outlined the seven main pitfalls undertaken by companies using EAI systems and explains solutions to these problems. [cite web|title=Dancing Around EAI 'Bear Traps'|date=2003-12-15|first=Gian|last=Trotta|url=http://www.ebizq.net/topics/int_sbp/features/3463.html|accessdate=2006-06-27]

*"Constant change":The very nature of EAI is dynamic and requires dynamic project managers to manage their implementation.
*"Lack of EAI experts":EAI requires knowledge of many issues and technical aspects.
*"Competing standards":Within the EAI field, the paradox is that EAI standards themselves are not universal.
*"EAI is a tool paradigm":EAI is not a tool, but rather a system and should be implemented as such.
*"Building interfaces is an art":Engineering the solution is not sufficient. Solutions need to be negotiated with user departments to reach a common consensus on the final outcome. A lack of consensus on interface designs leads to excessive effort to map between various systems data requirements.
*"Loss of detail": Information that seemed unimportant at an earlier stage may become crucial later.
*"Accountability":Since so many departments have many conflicting requirements, there should be clear accountability for the system's final structure.

Other potential problems may arise in these areas:
*"Emerging Requirements":EAI implementations should be extensible and modular to allow for future changes.
*"Protectionism":The applications whose data is being integrated often belong to different departments which have technical, cultural, and political reasons for not wanting to share their data with other departments

Advantages and Disadvantages

*Advantages
**Real time information access among systems
**Streamlines business processes and helps raise organizational efficiency.
**Maintains information integrity across multiple systems
**Ease of development and maintenance
*Disadvantages
**Prohibitively high development costs, especially for small and mid-sized businesses (SMBs).
**EAI implementations are very time consuming, and need a lot of resources.
**Require a fair amount of up front design, which many managers are not able to envision or not willing to invest in. Most EAI projects usually start off as point-to-point efforts, very soon becoming unmanageable as the number of applications increase.

The Future of EAI

EAI technologies are still being developed and there still is no consensus on the ideal approach or the correct group of technologies a company should use. A common pitfall is to use other proprietary technologies that claim to be open and extensible but create vendor lock-in.

See also

* system integration
* Integration appliance
* Data integration
* "Enterprise Integration Patterns"
* Enterprise service bus
* Comparison of business integration software
* Straight Through Processing
* Service-Oriented Modeling

Initiatives and organizations

* Health Level 7
* OSS through Java
* Open Knowledge Initiative
* Schools Interoperability Framework (SIF)

Commercial solutions

* IBM WebSphere Message Broker
* IONA Technologies Artix ESB
* iWay Software
* Microsoft BizTalk Server
* MOND Technologies
* Oracle BPEL Process Manager
* Pervasive Software
* SAP PI (formerly known as SAP XI / SAP Exchange Infrastructure)
* Sterling Commerce
* Tibco Software
* webMethods
* iBOLT
* SUN Microsystems
* Intersystems

Open-source projects

* Apache Synapse
* Apache ActiveMQ
* Apache Camel
* Apache ServiceMix
* FUSE Message Broker (enterprise ActiveMQ)
* FUSE Mediation Router (enterprise Camel)
* FUSE ESB (enterprise ServiceMix)
* Bostech
* OpenESB
* MuleSource
* Virtuoso Universal Server
* Jitterbit Integration Server
* Openadaptor

External links

* [http://www.integrationconsortium.org/ Integration Consortium]
* [http://www.amazon.com/dp/3836428334 Agent-Based EAI] .

References


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать курсовую

Look at other dictionaries:

  • Enterprise Application Integration — (EAI) oder Unternehmensanwendungsintegration (UAI) ist ein Konzept zur unternehmensweiten Integration der Geschäftsfunktionen entlang der Wertschöpfungskette, die über verschiedene Applikationen auf unterschiedlichen Plattformen verteilt sind,… …   Deutsch Wikipedia

  • Enterprise Application Integration — Intégration d applications d entreprise Pour les articles homonymes, voir IAE et EAI. L Intégration d applications d entreprise ou IAE (en anglais Enterprise Application Integration, EAI) est une architecture intergicielle permettant à des… …   Wikipédia en Français

  • Enterprise application integration — Intégration d applications d entreprise Pour les articles homonymes, voir IAE et EAI. L Intégration d applications d entreprise ou IAE (en anglais Enterprise Application Integration, EAI) est une architecture intergicielle permettant à des… …   Wikipédia en Français

  • enterprise application integration — ˌenterprise appliˈcation inteˌgration abbreviation EAI noun [uncountable] COMPUTING software or methods for organizing all the programs operating on a server (= the main computer on a network, which controls all the the others ) so that they work …   Financial and business terms

  • Enterprise Application Integration — (EAI)  это технологии и приложения, задача которых вовлечь несколько приложений, используемых в одной организации, в единый процесс и осуществлять преобразование форматов данных между ними. Необходимость в интеграции приложений обычно… …   Википедия

  • Enterprise Application Integration — The translation of data and other commands from one application format into another. Enterprise application integration is an ongoing process between two incompatible systems. This can allow for differing financial applications to interface… …   Investment dictionary

  • Enterprise application integration — Este artículo o sección necesita una revisión de ortografía y gramática. Puedes colaborar editándolo (lee aquí sugerencias para mejorar tu ortografía). Cuando se haya corregido, borra este aviso por favor …   Wikipedia Español

  • Enterprise Application Integration (EAI) — bzw. Unternehmensanwendungsintegration (UAI) ist ein Konzept zur unternehmensweiten Integration der Geschäftsfunktionen entlang der Wertschöpfungskette, die über verschiedene Applikationen auf unterschiedlichen Plattformen verteilt sind, und die… …   Deutsch Wikipedia

  • Enterprise Information Integration — or EII, is a process of information integration, using data abstraction to provide a single interface (known as uniform data access) for viewing all the data within an organization, and a single set of structures and naming conventions (known as… …   Wikipedia

  • Application Integration Architecture — In computing, Application Integration Architecture (AIA) is an integration framework produced by Oracle Corporation. Standards based, AIA has pre built common object definitions and services. Oracle AIA is built on Oracle Fusion Middleware s… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”