I integrated the ActiveMQ into the application of JBoss,and I used the ActiveMQ in clustering environment. I have tried many times for the value of <policyEntry queue="">,but the result is I didn't made the consumer MDB receive the message with load balancing. I want to make the consumer MDB receive message with roundRobinDispatchPolicy, could you tell me what value the <policyEntry queue="">should be, I need your help, thank you very much! the configuration in broker-config.xml <destinationPolicy> <policyMap> <policyEntries> <policyEntry queue="queue.outbound"> <dispatchPolicy> <roundRobinDispatchPolicy /> <!--strictOrderDispatchPolicy /--> </dispatchPolicy> <subscriptionRecoveryPolicy> <lastImageSubscriptionRecoveryPolicy /> </subscriptionRecoveryPolicy> </policyEntry> </policyEntries> </policyMap> </destinationPolicy> the configuration in ra.xml <config-property> <config-property-name>BrokerXmlConfig</config-property-name> <config-property-type>java.lang.String</config-property-type> <!--<config-property-value></config-property-value>--> <config-property-value>xbean:broker-config.xml</config-property-value> </config-property> the configuration in activemq-ds.xml <mbean code="org.jboss.resource.deployment.AdminObject" name="activemq.queue:name=outboundQueue"> <attribute name="JNDIName">activemq/queue/outbound</attribute> <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='activemq-ra.rar'</depends> <attribute name="Type">javax.jms.Queue</attribute> <attribute name="Properties">PhysicalName=queue.outbound</attribute> </mbean>
-- View this message in context: http://www.nabble.com/How-to-config-to-make-the-activemq-work-with-load-balance--tf3955994s2354.html#a11225174 Sent from the ActiveMQ - User mailing list archive at Nabble.com.