Just do
brokerService.setPlugins(new BrokerPlugin[]{sap});
Cheers
--
Dejan Bosanac - http://twitter.com/dejanb
Open Source Integration - http://fusesource.com/
ActiveMQ in Action - http://www.manning.com/snyder/
Blog - http://www.nighttale.net
On Fri, Oct 9, 2009 at 12:18 AM, vivekarora <[email protected]> wrote:
>
> Hi, Thank You for Your Help...
> It is working now..I am able to make a cluster of brokers.
> I need to ask one more thing. I am now working on the providing
> Authentication to the broker connections.
> I ma using SimpleAuthenticationplugin on the side where the broker only
> uses
> TransportConnector. I am using the foillowing code:-
>
> List ls=new ArrayList();
> AuthenticationUser a = new AuthenticationUser("vivek","keviv","users");
> ls.add(a);
> brokerService = new BrokerService();
>
> Broker regionBroker = null;
>
> try
> {
> brokerService.setBrokerName(brokerName);
> brokerService.setPersistent(false);
> brokerService.setUseShutdownHook(false);
>
>
> TransportConnector tc = new TransportConnector();
>
> tc.setConnectUri(new URI("tcp://" + brokerHost + ":"
> + brokerPort));
>
> brokerService.addConnector(tc);
> SimpleAuthenticationPlugin sap = new
> SimpleAuthenticationPlugin(ls);
>
> ???????? Dont Know What to do here????????????????
>
>
>
> After this thing I am not able to figure out how to add this
> SimpleAuthenticationPlugin object to the brokerService. I mean there is a
> way to add this so that we can say that to connect to this particular
> brokerService we have to use this particular credentials.
>
> Please help me regarding this....?
> --
> View this message in context:
> http://www.nabble.com/Connecting-a-Broker-to-Multiple-Brokers-tp25757201p25812574.html
> Sent from the ActiveMQ - User mailing list archive at Nabble.com.
>
>