*/
protected void initialize() throws JMSException {
super.initialize();
try {
boondocksChannel = TransportChannelProvider.create(new DefaultWireFormat(), new URI(uri));
boondocksChannel.addTransportStatusEventListener(this);
if (boondocksChannel instanceof CompositeTransportChannel) {
CompositeTransportChannel composite = (CompositeTransportChannel)boondocksChannel;
composite.setMaximumRetries(maximumRetries);
composite.setFailureSleepTime(reconnectSleepTime);
}
boondocksChannel.start();
//create our own broker connector ...
BrokerConnectorImpl connector = new BrokerConnectorImpl(getBrokerContainer(),"vm://uri",new DefaultWireFormat());
connector.start();
connector.addClient(boondocksChannel);
sendBrokerInfo();
}
catch (URISyntaxException e) {