As per IBM Documentation - "A transaction is started for every type of input node, including user-defined input nodes"
Is SOAPInput Node and HTTPInput Node are transactional i.e can they start a transaction ? The property panel of these two node does not provide to the option to set Transaction Type as automatic, yes or no. _________________ Thanks and Warm Regards
Sourav
HTTP as a protocol, and consequently Soap-over-http is non-transactional. I.e. there is no way in the protocol itself to retry a message without having the sender explicitly re-send it.
Likewise there's no way to unwrite or unread a file without explicitly rewriting or re-reading it.
All of the Broker input nodes will create a transactional scope for the flow itself, such that the execution of the flow will create a unit of work that will involve whatever transactional resources you want the flow to manage.
So if you start a flow with a FileInput node, you can configure it such that if the flow processing fails then all of the Database and MQ operations that you've performed are rolled back if the flow fails. But if you've told the FileInput node to delete the file, you don't get to magically recreate the file.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum