mt_wmc

hi

there are 3 steps in a flow service:

startTransaction
insertdata
rollbackTransaction

JDBC is configured as NO_TRANSACTION, and still it auto-commits?!?

any suggestions…

mt

Basically ifyou use No_Transaction connection type,it will still auto commits,so try using XA_Transaction.This way you can handle comit/rollback transactions using ART services.

HTH,
RMG

Yes, it works!

Thank you RMG.

MT