Search in sources :

Example 6 with CompletionCoordinatorParticipant

use of com.arjuna.wst.CompletionCoordinatorParticipant in project narayana by jbosstm.

the class Sc007TestCase method test2_1.

/**
 * testAT2_1 - 2.1 Commit
 * Participant registers for Durable2PC, initiator commits, transaction commits successfully.
 * @throws Exception on failure.
 */
public void test2_1() throws Exception {
    final String conversationId = getConversationId();
    final InteropWaitState state = new InteropWaitState(AtomicTransactionConstants.WSAT_ACTION_COMMITTED);
    ProxyConversation.setConversationState(conversationId, state);
    try {
        final String serviceURI = ProxyURIRewriting.rewriteURI(conversationId, getParticipantURI());
        final CoordinationContextType context = InteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().commit(serviceURI, context);
        final CompletionCoordinatorParticipant participant = InteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.commit();
        state.waitForCompletion(0);
    } finally {
        ProxyConversation.clearConversationState(conversationId);
    }
    assertTrue("Conversation did not complete successfully", state.isSuccessful());
}
Also used : InteropWaitState(com.jboss.transaction.wstf.interop.states.InteropWaitState) CoordinationContextType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType) CompletionCoordinatorParticipant(com.arjuna.wst.CompletionCoordinatorParticipant)

Example 7 with CompletionCoordinatorParticipant

use of com.arjuna.wst.CompletionCoordinatorParticipant in project narayana by jbosstm.

the class Sc007TestCase method test3_7.

/**
 * test3_7 - 3.7 RetryPreparedCommit
 * Tests recovery from a communication failure during the prepare phase. Transaction commits normally.
 * @throws Exception on failure.
 */
public void test3_7() throws Exception {
    final String conversationId = getConversationId();
    final Sc007RetryPreparedCommitState state = new Sc007RetryPreparedCommitState();
    ProxyConversation.setConversationState(conversationId, state);
    try {
        final String serviceURI = ProxyURIRewriting.rewriteURI(conversationId, getParticipantURI());
        final CoordinationContextType context = InteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().retryPreparedCommit(serviceURI, context);
        final CompletionCoordinatorParticipant participant = InteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.commit();
        state.waitForCompletion(0);
    } finally {
        ProxyConversation.clearConversationState(conversationId);
    }
    assertTrue("Conversation did not complete successfully", state.isSuccessful());
}
Also used : Sc007RetryPreparedCommitState(com.jboss.transaction.wstf.interop.states.Sc007RetryPreparedCommitState) CoordinationContextType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType) CompletionCoordinatorParticipant(com.arjuna.wst.CompletionCoordinatorParticipant)

Example 8 with CompletionCoordinatorParticipant

use of com.arjuna.wst.CompletionCoordinatorParticipant in project narayana by jbosstm.

the class ParticipantProcessor method completionCommit.

/**
 * Execute the CompletionCommit
 * @param coordinatorURI The address of the coordinator to employ
 * @param map The current addressing context.
 * @throws SoapFault11 for errors during processing
 */
public void completionCommit(final String coordinatorURI, final MAP map) throws SoapFault11 {
    try {
        final CoordinationContextType context = InteropUtil.createCoordinationContext(coordinatorURI);
        final CompletionCoordinatorParticipant participant = InteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.commit();
    } catch (final Throwable th) {
        throw new SoapFault11(th);
    }
}
Also used : SoapFault11(com.arjuna.webservices11.SoapFault11) CoordinationContextType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType) CompletionCoordinatorParticipant(com.arjuna.wst.CompletionCoordinatorParticipant)

Example 9 with CompletionCoordinatorParticipant

use of com.arjuna.wst.CompletionCoordinatorParticipant in project narayana by jbosstm.

the class ATTestCase method testAT3_1.

/**
 * testAT3_1 - 3.1 Phase2Rollback
 * Coordinator aborts the transaction due to an Aborted vote during the prepare phase.
 * @throws Exception on failure.
 */
public void testAT3_1() throws Exception {
    final String conversationId = getConversationId();
    final InteropWaitState state = new InteropWaitState(AtomicTransactionConstants.WSAT_ACTION_ABORTED, 2);
    ProxyConversation.setConversationState(conversationId, state);
    try {
        final String serviceURI = ProxyURIRewriting.rewriteURI(conversationId, getParticipantURI());
        final CoordinationContextType context = ATInteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().phase2Rollback(serviceURI, context);
        final CompletionCoordinatorParticipant participant = ATInteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.commit();
        fail("Transaction rollback expected");
    } catch (final TransactionRolledBackException trbe) {
        state.waitForCompletion(0);
    } finally {
        ProxyConversation.clearConversationState(conversationId);
    }
    assertTrue("Conversation did not complete successfully", state.isSuccessful());
}
Also used : TransactionRolledBackException(com.arjuna.wst.TransactionRolledBackException) InteropWaitState(com.jboss.transaction.txinterop.interop.states.InteropWaitState) CoordinationContextType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType) CompletionCoordinatorParticipant(com.arjuna.wst.CompletionCoordinatorParticipant)

Example 10 with CompletionCoordinatorParticipant

use of com.arjuna.wst.CompletionCoordinatorParticipant in project narayana by jbosstm.

the class ATTestCase method testAT3_2.

/**
 * testAT3_2 - 3.2 Readonly
 * Tests coordinator committing a transaction with a read only participant.
 * @throws Exception on failure.
 */
public void testAT3_2() throws Exception {
    final String conversationId = getConversationId();
    final InteropWaitState state = new InteropWaitState(AtomicTransactionConstants.WSAT_ACTION_COMMITTED);
    ProxyConversation.setConversationState(conversationId, state);
    try {
        final String serviceURI = ProxyURIRewriting.rewriteURI(conversationId, getParticipantURI());
        final CoordinationContextType context = ATInteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().readonly(serviceURI, context);
        final CompletionCoordinatorParticipant participant = ATInteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.commit();
        state.waitForCompletion(0);
    } finally {
        ProxyConversation.clearConversationState(conversationId);
    }
    assertTrue("Conversation did not complete successfully", state.isSuccessful());
}
Also used : InteropWaitState(com.jboss.transaction.txinterop.interop.states.InteropWaitState) CoordinationContextType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType) CompletionCoordinatorParticipant(com.arjuna.wst.CompletionCoordinatorParticipant)

Aggregations

CompletionCoordinatorParticipant (com.arjuna.wst.CompletionCoordinatorParticipant)30 CoordinationContextType (org.oasis_open.docs.ws_tx.wscoor._2006._06.CoordinationContextType)30 InteropWaitState (com.jboss.transaction.txinterop.interop.states.InteropWaitState)10 InteropWaitState (com.jboss.transaction.wstf.interop.states.InteropWaitState)10 TransactionRolledBackException (com.arjuna.wst.TransactionRolledBackException)8 SoapFault11 (com.arjuna.webservices11.SoapFault11)4 ATInteropPreparedAfterTimeoutState (com.jboss.transaction.txinterop.interop.states.ATInteropPreparedAfterTimeoutState)1 ATInteropRetryPreparedAbortState (com.jboss.transaction.txinterop.interop.states.ATInteropRetryPreparedAbortState)1 ATInteropRetryPreparedCommitState (com.jboss.transaction.txinterop.interop.states.ATInteropRetryPreparedCommitState)1 Sc007PreparedAfterTimeoutState (com.jboss.transaction.wstf.interop.states.Sc007PreparedAfterTimeoutState)1 Sc007RetryPreparedAbortState (com.jboss.transaction.wstf.interop.states.Sc007RetryPreparedAbortState)1 Sc007RetryPreparedCommitState (com.jboss.transaction.wstf.interop.states.Sc007RetryPreparedCommitState)1