- Oracle Adapter for Oracle Applications
- Oracle JCA Adapter for AQ
- Oracle JCA Adapter for Database
- Oracle JCA Adapter for Files
- Oracle JCA Adapter for FTP
- Oracle BAM Adapter
- PeopleSoft Adapter
- SAP R/3 Adapter
- Siebel
- J.D. Edwards
Anyway, we were looking for a way to utilize the custom JCA adapter on the bus and came across the OSB Transport API. It appeared that this would do the trick but seemed extremely complicated so we kept digging. We eventually settled on deploying the JCA adapter to the WebLogic Server and writing a small wrapper class that made it easy to access the adapter with a JNDI lookup.
We were then able to simply use a Java Callout from the OSB to access the adapter. This is obviously not the most elegant solution but has proved to work extremely well. We were a little concerned about performance so we did a little testing. We were able to push a single WLS managed server to over 3,000 adapter calls/second which is more then sufficient for our application.
A few details:
- The JCA wrapper class takes and returns an XML document as a string
- It then uses JAXB to marshall/unmarshall it and calls the adapter
- The marshaller has been optimized to not destory itself every time to prevent marshalling bottlenecks
- The JCA wrapper also caches the JCA connection information