Search in sources :

Example 1 with CompletionCoordinatorParticipant

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

the class Sc007TestCase method test2_2.

/**
 * test2_2 - 2.2 Rollback
 * Participant registers for Durable2PC, initiator rolls back.
 * @throws Exception on failure.
 */
public void test2_2() throws Exception {
    final String conversationId = getConversationId();
    final InteropWaitState state = new InteropWaitState(AtomicTransactionConstants.WSAT_ACTION_ABORTED);
    ProxyConversation.setConversationState(conversationId, state);
    try {
        final String serviceURI = ProxyURIRewriting.rewriteURI(conversationId, getParticipantURI());
        final CoordinationContextType context = InteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().rollback(serviceURI, context);
        final CompletionCoordinatorParticipant participant = InteropUtil.registerCompletion(context, context.getIdentifier().getValue());
        participant.rollback();
        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 2 with CompletionCoordinatorParticipant

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

the class Sc007TestCase method test3_4.

/**
 * test3_4 - 3.4 EarlyReadonly
 * Tests the case of a participant initiated ReadOnly message occurring prior to the prepare phase.
 * @throws Exception on failure.
 */
public void test3_4() 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().earlyReadonly(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 3 with CompletionCoordinatorParticipant

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

the class Sc007TestCase method test3_9.

/**
 * test3_9 - 3.9 RetryCommit
 * Tests recovery from a communication failure during the commit phase. Transaction commits normally.
 * @throws Exception on failure.
 */
public void test3_9() 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().retryCommit(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 4 with CompletionCoordinatorParticipant

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

the class Sc007TestCase method test3_3.

/**
 * test3_3 - 3.3 VolatileAndDurable
 * Tests registration during the volatile prepare phase.
 * @throws Exception on failure.
 */
public void test3_3() 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().volatileAndDurable(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 5 with CompletionCoordinatorParticipant

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

the class Sc007TestCase method test3_2.

/**
 * test3_2 - 3.2 Readonly
 * Tests coordinator committing a transaction with a read only participant.
 * @throws Exception on failure.
 */
public void test3_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 = InteropUtil.createCoordinationContext(getSourceCoordinatorURI());
        getParticipantStub().readonly(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)

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