There may be 2 issues:
1. It seems that you are logging on with the same credentials in brokerA and brokerB.
Try modifying the following lines to have different sender.comp.id
metc.brokerA.qf.sender.comp.id=150w-ita@gmail.com
metc.brokerB.qf.sender.comp.id=150w-ita@gmail.com
2. Make sure that you load all 3 broker beans in ors/conf/brokers/main.xml in the following section:
<import resource="brokerA/main.xml"/>
<import resource="brokerB/main.xml"/>
<property name="brokers">
<list>
<ref bean="metc_broker"/>
<ref bean="brokerA"/>
<ref bean="brokerB"/>
</list>
</property>
#2 is the more likely curlprit, just make sure you are loading and including all 3 brokers in the Spring config file.
This message was edited 1 time. Last update was at 05/12/2011 15:51:24
|