this.remoteBrokerName = remoteBrokerName;
this.remoteClusterName = remoteclusterName;
ActiveMQConnectionFactory fac = new ActiveMQConnectionFactory();
fac.setJ2EEcompliant(false);
fac.setTurboBoost(true);
remoteConnection = new ActiveMQConnection(fac, remoteUserName, remotePassword, channel);
remoteConnection.setClientID("Boondocks:" + remoteClusterName + ":" + remoteBrokerName);
remoteConnection.setQuickClose(true);
remoteConnection.start();
BrokerInfo info = new BrokerInfo();
info.setBrokerName(brokerContainer.getBroker().getBrokerName());