Book Image

Oracle Application Integration Architecture (AIA) Foundation Pack 11gR1: Essentials

By : Hariharan V Ganesarethinam
Book Image

Oracle Application Integration Architecture (AIA) Foundation Pack 11gR1: Essentials

By: Hariharan V Ganesarethinam

Overview of this book

<p>Every Enterprise should have a learning curve in building better integration solutions from inaccuracy. Since Integration becomes the backbone of every corporate IT system, it is important to build the integration solution based on industry proven best practices. Oracle being a leader in enterprise solutions brings industry best practices and open standards as Oracle AIA framework. Oracle AIA Foundation Packs provide an open standard data model, templates and methodologies to build integrations and processes for enterprise applications. This book will guide you through the Oracle AIA fundamentals and development practices.<br /><br />Oracle Application Integration Architecture (AIA) Foundation Pack 11gR1 focuses on the fundamentals of integration, the AIA approach to integration and various integration components in AIA. This book is developer- friendly as the structure of the book explains each component right from architecture to development. <br /><br />This book covers Oracle AIA and its approach for better collaboration with integration teams. It covers all the components of the Oracle AIA Foundation Pack.<br /><br />This book begins with AIA fundamentals, architecture, and components from Enterprise Business Objects (EBO), Enterprise Business Message (EBM), Enterprise Business Services (EBS), Application Business Connector Service (ABCS), and Enterprise Business Flow (EBF). However, this is not enough to build enterprise solution, so this book also covers AIA security, version management, design patterns, error handling, and centralized repository. In turn, this book doesn't leave out testing; it covers Composite Asset Validation System (CAVS). Finally, the last chapter ends with case studies that express real-time scenarios.</p>
Table of Contents (20 chapters)
Oracle Application Integration Architecture (AIA) Foundation Pack 11R1: Essentials
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface

Enabling error notification


AIA out of box provides value added solutions to handle the integration exception by enabling the error notification. In the SOA design, one of the mature approach is adding error notification service in the stack to provide common notification mechanism. As the AIA framework provides the best practical approach in integration, it also includes the error notification component.

By default, error notification is enabled in AIA. To make sure of this, go to the folder at $aia_home\aia_instances\aiasoa\AIAMetaData\config and open AIAConfigurationProperties.xml in the XML editor or JDeveloper. In the configuration properties file, the property name EH.INVOKE.NOTIFY should be set as TRUE.

<AIAConfiguration xmlns="http://xmlns.oracle.com/aia/core/config/V1" version="1.0">
<!-- System-wide configuration -->
<SystemConfiguration>
<ModuleConfiguration moduleName="ErrorHandler">
<Property name="EH.INVOKE.NOTIFY">true</Property>
</ModuleConfiguration...