}
private final W3CEndpointReference registerParticipant(final W3CEndpointReference participant, final String protocol)
throws com.arjuna.wsc.InvalidProtocolException, com.arjuna.wsc.InvalidStateException, com.arjuna.wsc.CannotRegisterException, SystemException
{
TxContextImple currentTx = null;
try
{
currentTx = (TxContextImple) _ctxManager.currentTransaction();
if (currentTx == null)
throw new com.arjuna.wsc.NoActivityException();
final CoordinationContextType coordinationContext = currentTx.context().getCoordinationContext() ;
final String messageId = MessageId.getMessageId() ;
return RegistrationCoordinator.register(coordinationContext, messageId, participant, protocol) ;
}
catch (final SoapFault sf)
{