Composite X invokes an outbound DB adapter to write data to a database table. You have configured JCA retry at the binding component as follows:
<property name = “jca.retry.count” type=”xs:int” many=”false” override =”may”>2</property>
<property name = “jca.retry.interval” type=”xs:int” many=”false” override =”may”>2</property>
You have also modeled a fault policy to retry the invocation three times in case of remoteFault as follows:
<retryCount>3<retryCount>
<retryInterval>3<retryInterval>
What happens when the database that is being accessed by the above binding component goes down?
Select one of the following: