Search in sources :

Example 6 with ParticipantPortType

use of com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType in project narayana by jbosstm.

the class AsyncParticipantClient method sendRetryCommit.

/**
 * Send a retryCommit request.
 * @param coordinationContext The coordination context.
 * @param map The addressing context initialised with to, message ID and relates to.
 * @throws IOException for any transport errors.
 */
public void sendRetryCommit(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault, IOException {
    map.setReplyTo(initiator);
    ParticipantPortType port = InteropClient.getParticipantPort(map, retryCommitAction);
    CoordinationContextManager.setThreadContext(coordinationContext);
    try {
        port.retryCommit();
    } finally {
        CoordinationContextManager.setThreadContext(null);
    }
}
Also used : ParticipantPortType(com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType)

Example 7 with ParticipantPortType

use of com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType in project narayana by jbosstm.

the class InteropClient method getParticipantPort.

// don't think we ever need this as we get a registration port from the endpoint ref returned by
// the activation port request
public static ParticipantPortType getParticipantPort(MAP map, String action) {
    Sc007Service service = getSc007Service();
    ParticipantPortType port = service.getPort(ParticipantPortType.class, new AddressingFeature(true, true));
    BindingProvider bindingProvider = (BindingProvider) port;
    String to = map.getTo();
    List<Handler> customHandlerChain = new ArrayList<Handler>();
    /*
         * we need to add the coordination context handler in the case where we are passing a
         * coordination context via a header element
         */
    customHandlerChain.add(new CoordinationContextHandler());
    /*
         * we no longer have to add the JaxWS WSAddressingClientHandler because we can specify the WSAddressing feature
		customHandlerChain.add(new WSAddressingClientHandler());
         */
    bindingProvider.getBinding().setHandlerChain(customHandlerChain);
    Map<String, Object> requestContext = bindingProvider.getRequestContext();
    map.setAction(action);
    map.setFrom(getInitiator());
    AddressingHelper.configureRequestContext(requestContext, map, to, action);
    return port;
}
Also used : AddressingFeature(javax.xml.ws.soap.AddressingFeature) ParticipantPortType(com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType) CoordinationContextHandler(com.jboss.transaction.wstf.webservices.handlers.CoordinationContextHandler) ArrayList(java.util.ArrayList) CoordinationContextHandler(com.jboss.transaction.wstf.webservices.handlers.CoordinationContextHandler) Handler(javax.xml.ws.handler.Handler) BindingProvider(javax.xml.ws.BindingProvider) Sc007Service(com.jboss.transaction.wstf.webservices.sc007.generated.Sc007Service)

Example 8 with ParticipantPortType

use of com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType in project narayana by jbosstm.

the class AsyncParticipantClient method sendReadonly.

/**
 * Send a readonly request.
 * @param coordinationContext The coordination context.
 * @param map The addressing context initialised with to, message ID and relates to.
 * @throws SoapFault For any errors.
 * @throws IOException for any transport errors.
 */
public void sendReadonly(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault, IOException {
    map.setReplyTo(initiator);
    ParticipantPortType port = InteropClient.getParticipantPort(map, readonlyAction);
    CoordinationContextManager.setThreadContext(coordinationContext);
    try {
        port.readonly();
    } finally {
        CoordinationContextManager.setThreadContext(null);
    }
}
Also used : ParticipantPortType(com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType)

Example 9 with ParticipantPortType

use of com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType in project narayana by jbosstm.

the class AsyncParticipantClient method sendRollback.

/**
 * Send a rollback request.
 * @param coordinationContext The coordination context.
 * @param map The addressing context initialised with to, message ID and relates to.
 * @throws SoapFault For any errors.
 * @throws IOException for any transport errors.
 */
public void sendRollback(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault, IOException {
    map.setReplyTo(initiator);
    ParticipantPortType port = InteropClient.getParticipantPort(map, rollbackAction);
    CoordinationContextManager.setThreadContext(coordinationContext);
    try {
        port.rollback();
    } finally {
        CoordinationContextManager.setThreadContext(null);
    }
}
Also used : ParticipantPortType(com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType)

Example 10 with ParticipantPortType

use of com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType in project narayana by jbosstm.

the class AsyncParticipantClient method sendEarlyReadonly.

/**
 * Send an earlyReadonly request.
 * @param coordinationContext The coordination context.
 * @param map The addressing context initialised with to, message ID and relates to.
 * @throws SoapFault For any errors.
 * @throws IOException for any transport errors.
 */
public void sendEarlyReadonly(final CoordinationContextType coordinationContext, final MAP map) throws SoapFault, IOException {
    map.setReplyTo(initiator);
    ParticipantPortType port = InteropClient.getParticipantPort(map, earlyReadonlyAction);
    CoordinationContextManager.setThreadContext(coordinationContext);
    try {
        port.earlyReadonly();
    } finally {
        CoordinationContextManager.setThreadContext(null);
    }
}
Also used : ParticipantPortType(com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType)

Aggregations

ParticipantPortType (com.jboss.transaction.wstf.webservices.sc007.generated.ParticipantPortType)16 CoordinationContextHandler (com.jboss.transaction.wstf.webservices.handlers.CoordinationContextHandler)1 Sc007Service (com.jboss.transaction.wstf.webservices.sc007.generated.Sc007Service)1 ArrayList (java.util.ArrayList)1 BindingProvider (javax.xml.ws.BindingProvider)1 Handler (javax.xml.ws.handler.Handler)1 AddressingFeature (javax.xml.ws.soap.AddressingFeature)1