The sqlTransactionWrapper
wraps an existing service in a transaction.
It does this by aquiring a database connection and starting a transaction on it.
It then invokes the service URI (specified by service and passes the database connection as a parameter.
If the sub-request for the service succeeds then the transaction is commited. If an unhandled exception
occurs in the sub-requested service then the transaction rollsback.
If an rdbms configuration as described here
is passed then this
is used to find the connection. If none is supplied the default configuration found at
ffcpl:/etc/rdbmsConfig.xml
is used.
A single transacted connection is then passed to the wrapped service by value as an
argument named rdbmsConfig
. The wrapped service should then use this supplied
connection in all database requests for example:
<idoc>
<instr>
<type>sqlQuery</type>
<configuration>this:param:rdbmsConfig</configuration>
<operand>
<sql>SELECT * FROM table;</sql>
</operand>
<target>this:response</target>
</instr>
</idoc>
The sqlTransactionWrapper implements the 'mapper
' pattern.
All attached arguments in the request to wrapper are passed through to underlying
service except service
. For example in this DPML script:
active:sqlTransactionWrapper+service@active:beanshell+operator@ffcpl:/myScript.bsh
would create a sub-request:
active:beanshell+operator@ffcpl:/myScript.bsh+rdbmsConfig@[a transient pass-by value URI]