Search in sources :

Example 1 with ActivationCoordinatorClient

use of com.arjuna.webservices11.wscoor.client.ActivationCoordinatorClient in project narayana by jbosstm.

the class ActivationCoordinator method createCoordinationContext.

/**
 * Create the coordination context.
 * @param activationCoordinatorURI The URI of the activation coordinator.
 * @param messageID The messageID to use.
 * @param coordinationTypeURI The coordination type.
 * @param expires The expiry time or null.
 * @param currentContext The currnt context or null.
 * @return The coordination context.
 * @throws com.arjuna.wsc.InvalidCreateParametersException if the create parameters are invalid.
 * @throws SoapFault for errors during processing.
 */
public static CoordinationContextType createCoordinationContext(final String activationCoordinatorURI, final String messageID, final String coordinationTypeURI, final Long expires, final CoordinationContext currentContext) throws InvalidCreateParametersException, SoapFault {
    final MAP map = AddressingHelper.createRequestContext(activationCoordinatorURI, messageID);
    final Expires expiresValue;
    if (expires == null) {
        expiresValue = null;
    } else {
        expiresValue = new Expires();
        expiresValue.setValue(expires.longValue());
    }
    try {
        CreateCoordinationContextResponseType response;
        ActivationCoordinatorClient client = ActivationCoordinatorClient.getClient();
        response = client.sendCreateCoordination(map, coordinationTypeURI, expiresValue, currentContext);
        return response.getCoordinationContext();
    } catch (final IOException ioe) {
        throw new SoapFault11(ioe);
    } catch (SOAPFaultException sfe) {
        // TODO -- work out which faults we should really throw. in particular do we need to retain SoapFault
        final SOAPFault soapFault = sfe.getFault();
        final QName subcode = soapFault.getFaultCodeAsQName();
        if (CoordinationConstants.WSCOOR_ERROR_CODE_INVALID_PARAMETERS_QNAME.equals(subcode)) {
            Detail detail = soapFault.getDetail();
            String message = (detail != null ? detail.getTextContent() : soapFault.getFaultString());
            throw new InvalidCreateParametersException(message);
        }
        throw SoapFault11.create(sfe);
    }
}
Also used : ActivationCoordinatorClient(com.arjuna.webservices11.wscoor.client.ActivationCoordinatorClient) QName(javax.xml.namespace.QName) SoapFault11(com.arjuna.webservices11.SoapFault11) SOAPFaultException(javax.xml.ws.soap.SOAPFaultException) SOAPFault(javax.xml.soap.SOAPFault) Expires(org.oasis_open.docs.ws_tx.wscoor._2006._06.Expires) IOException(java.io.IOException) MAP(org.jboss.ws.api.addressing.MAP) CreateCoordinationContextResponseType(org.oasis_open.docs.ws_tx.wscoor._2006._06.CreateCoordinationContextResponseType) Detail(javax.xml.soap.Detail) InvalidCreateParametersException(com.arjuna.wsc.InvalidCreateParametersException)

Aggregations

SoapFault11 (com.arjuna.webservices11.SoapFault11)1 ActivationCoordinatorClient (com.arjuna.webservices11.wscoor.client.ActivationCoordinatorClient)1 InvalidCreateParametersException (com.arjuna.wsc.InvalidCreateParametersException)1 IOException (java.io.IOException)1 QName (javax.xml.namespace.QName)1 Detail (javax.xml.soap.Detail)1 SOAPFault (javax.xml.soap.SOAPFault)1 SOAPFaultException (javax.xml.ws.soap.SOAPFaultException)1 MAP (org.jboss.ws.api.addressing.MAP)1 CreateCoordinationContextResponseType (org.oasis_open.docs.ws_tx.wscoor._2006._06.CreateCoordinationContextResponseType)1 Expires (org.oasis_open.docs.ws_tx.wscoor._2006._06.Expires)1