I am using an Integration Server 7.1.1 JDBC adapter in an XA transaction to perform an update to an Oracle database, but an error is occurring upon commit, indicating that a different JDBC adapter is failing, and then the rollback fails anyway, so the commit worked after all.
My flow looks basically like this:
SEQUENCE (exit on success)
SEQUENCE (try - exit on failure)
pub.art.transaction:startTransaction
myUpdateSqlAdapter
pub.art.transaction:commitTransaction (input transactionName mapped from startTransaction)
SEQUENCE (catch - exit on success)
pub.flow.getLastError
pub.flow.debugLog
pub.art.transaction:rollbackTransaction
The error is like this:
[ART.117.4002] Adapter Runtime (Adapter Service): Unable to invoke adapter service someOtherSqlAdapter
…
followed by a traceback from art.transaction.rollbackTransaction.
Anybody see anything wrong with my sequences or why the wrong JDBC adapter is getting called?
#Adapters-and-E-Standards#Integration-Server-and-ESB#webMethods