// XTS expects the TCCL to be set to something that will locate the XTS service implementation classes.
final ClassLoader loader = TxBridgeOutboundRecoveryService.class.getClassLoader();
SecurityActions.setContextLoader(loader);
try {
OutboundBridgeRecoveryManager service = new OutboundBridgeRecoveryManager();
try {
service.start();
} catch (Exception e) {
throw new StartException("TxBridge outbound recovery service start failed", e);
}
outboundBridgeRecoveryManager = service;
} finally {