YOUR FEEDBACK
E-Commerce 2.0
Brian wrote: I think we're heading in the right direction, but we've still...


2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Systems Integration with Openadaptor
Business system integration with little or no custom programming

Digg This!

Page 2 of 5   « previous page   next page »

To overcome these limitations and accommodate appropriate standards and technologies that have since emerged, the framework has recently been completely overhauled. The rewritten version comes with a much cleaner, smaller codebase and architectural improvements throughout:

  • Improved performance achieved partially through a strategy of minimal interference with payload data as it traverses adaptors, including the elimination of the rigid internal data representation format (DataObjects) and consequent, possibly unnecessary conversions.
  • Spring framework (see Resources) based XML configuration - typically adaptors are assembled via simple Spring XML configuration files rather than having to write and compile Java code. This also makes adaptors easy to embed into Spring applications.
  • Better extensibility - writing custom components does not require extensive knowledge of the framework. Interfaces for custom components are few and simple. Bespoke behavior, previously only possible through custom code, can now often be achieved through scripting.
  • Lighter - the framework adds only a thin layer between the JVM (or a user process that runs an adaptor) and the actual components that read and process the data. The overhead is minimal, and apart from a JVM being installed in the target environment, system requirements are minimal.
  • Flexible execution and embedding - adaptors may be run as standalone processes, be embedded within other processes, or deployed to JEE or other application servers. The flexibility makes it easy to introduce Openadaptor into existing projects.
  • Not reinventing the wheel - Openadaptor delegates responsibility wherever possible to external, well-accepted industry standard mechanisms. For example, it allows users to leverage the Spring framework's dependency injection (while not requiring it), to use well-accepted JTA implementations for transaction management, or to deploy adaptors to JEE application servers and use their resources.
  • Flexible internal data representation - so-called ordered maps (which are standard Java Maps, see Internal Data Representation sidebar for details) and XML are often used for internal data representation and manipulation, but users are free to use a representation of their choosing - such as an organization's bespoke format - for communication between their custom processors.
  • Pragmatic - it is here to do a real job, it is used in critical high-volume, low-latency production systems; in the financial domain it processes hundreds of millions of Euros worth of trades daily.
  • Cross platform - as a Java-based framework, it benefits from platform neutrality. At the same time, by offering connectors such as Web services, it does not assume the integrated systems are written in any particular programming language or are running on any specific platform.
  • Easy management and monitoring - supports instrumentation through JMX.
  • Comprehensive and modular - Openadaptor has a component architecture, allowing the inclusion of functionality as per user requirements.
  • Easy to test - replacing connectors to external resources such as databases, messaging solutions, or bespoke systems with file-based connectors allows for the easy creation of debugging environments or the ability to craft automated system tests. It also facilitates decoupling of producers and consumers of data in MOM environments.
In addition, it was designed to permit a reasonable migration path from legacy Openadaptor, which will be of relevance to users of previous versions of the framework.

The essence of the framework remains unchanged. What exactly can Openadaptor be used for? Essentially it excels in two areas.

First, Openadaptor can be a link between a system and a Message Oriented Middleware (MOM). When used in combination with MOM, Openadaptor can loosely be classified as an Enterprise Service Bus (ESB) and constitute part of an organization's messaging backbone.

Second, it can be a link between two systems, not involving MOM. To illustrate this, Openadaptor might query a Web service, perhaps filter or modify the returned data, and eventually persist it to a relational database. As a subset of this category, the framework could be used as a file processing tool, perhaps to convert comma-delimited files to XML documents.

Openadaptor is primarily targeting system integrators and Java developers, who will often have come across the need to achieve tasks like these:

  • Read in an XML document from a flat file, find XML elements of interest using XPath, and use the content of those elements to run an SQL update query on a database.
  • Start a Web service to accept data from a .NET system. When the service receives a request, use a JavaScript-based filter to discard irrelevant data. The discarded data is to be written to a dedicated flat file while the data that passes through the filter is to be sent to an MQSeries topic.
  • Periodically query a relational database after looking up a data source in JEE application server's JNDI tree. Save the query results to a comma-delimited text file. Expose a JMX console that allows for the monitoring of details, such as the number of database queries run or the size of the output file, through a web page.
  • Collect data from a bespoke front-end trading application and validate, filter, and reformat it using a simple scripting language. Pass the data on to a bespoke back-end booking system. Both systems are transaction-aware and every message is required to be processed as part of a distributed global transaction.
  • Subscribe to a JMS messaging backbone and on receipt of a correct message update a relational database. On receipt of an erroneous message send an e-mail to a system administrator.
In each of the above situations, Openadaptor could significantly increase efficiency and reduce implementation time. All tasks would require nothing but a short XML configuration file.

Java developers may find that by providing many ready-to-use components, the framework offers an alternative to programming in the large; it can reduce the need to repeatedly write code to connect to various interfaces using different, sometimes complicated APIs. At the same time it doesn't prevent users from adjusting (either programmatically or through configuration) components to their needs or writing custom components with custom Java code from scratch. By commoditizing the tedious task of integration, it frees the developer to concentrate on more interesting problems.



Page 2 of 5   « previous page   next page »

About Kris Lachor
Kris Lachor is a senior software developer at Dresdner Kleinwort.

LATEST JAVA STORIES & POSTS
Case Study: Java and the Mac
This is the story of a Mac application developer (okay - it's about two of them) who set out on a quest to find an application development tool based on Java so his boss would let him develop on the Mac platform, which he loved. There was only one catch - he had to find a tool th
A Lightweight Approach to SOA and BPM in Java Using jBPM
SOA is mostly associated with technologies such as BPEL, SCA and Web Services. But does SOA really imply these technologies? In this session we will show how you can use the service oriented approach while staying inside the Java world. jBPM is a powerful lightweight framework th
JavaOne 2008: Uncommon Java Bugs
Any large Java source base can have insidious and subtle bugs. Every experienced Java programmer knows that finding and fixing these bugs can be difficult and costly. Fortunately, there are a large number of free open source Java tools available that can be used to find and fix d
The 4 Core Principles of Agile Programming
One of the things I really enjoy at the moment is the recognition and adoption of agile programming as a fully fledged powerful way to deliver quality software projects. As its figurehead is a group of very talented individuals who have created the agile manifesto (http://agilema
JavaOne 2008: Sun Adds Comprehensive Video Capabilities to JavaFX
Sun Microsystems announced it has entered into a multi-year agreement with On2 Technologies to add comprehensive video capabilities, using On2 Technologies TrueMotion video codecs, to Sun's JavaFX, a family of products for creating Rich Internet Applications (RIAs) with immersive
JavaOne Archives - Dvorak Comments on AMD Intel Lawsuit on SYS-CON.TV
Conference in San Francisco. Dvorak held forth on a number of topics, including the new AMD/Intel lawsuit, the viability of Java and Sun, the value of (or lack thereof) of corporate PR, and whether or not a new book about Silicon Valley is really worth reading.
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE
BREAKING JAVA NEWS
KongZhong Corporation Reports Unaudited First Quarter 2008 Financial Results
KongZhong Corporation , a leading wireless value-added services (WVAS) and wireless media co