Hi all. I've a couple of question regarding the port from a webapp using JbossMq to the same using AMQ
1) I've integrated AMQ with Jboss-4.0.3 as explained in http://www.activemq.org/JBoss+Integration Now i've an MDB deployed in Jboss+JbossMq listen on a remote topic on Jboss+AMQ, and i need to setup the broker to redeliver a message on rollback once every 10 sec indefinitely. I achieve the same thing in JbossMQ place the following xml in deploy/jms/jbossmq-destinations-service.xml <mbean code="org.jboss.mq.server.jmx.Topic" name="jboss.mq.destination:service=Topic,name=durableTopicExample"> <depends optional-attribute- name="DestinationManager">jboss.mq:service=DestinationManager</depends> <depends optional-attribute- name="SecurityManager">jboss.mq:service=SecurityManager</depends> <attribute name="SecurityConf"> <security> <role name="subscriber" read="true" write="false" create="true"/> <role name="publisher" read="true" write="true" create="false"/> <role name="durpublisher" read="true" write="true" create="true"/> </security> </attribute> <attribute name="RedeliveryDelay">10000</attribute> <attribute name="RedeliveryLimit">-1</attribute> </mbean> It's possible to obtain the same behavior with ActiveMQ? 2) In JbossMq isn't possible configure one MDB to listen from multiple queues (or topic) unless you deploy multiple time the same MDB and configure everyone to listen on a different queue. Has ActiveMQ a feature to accomplish this? Thanks in advance -- Andrea Manca <[EMAIL PROTECTED]> Link.it s.r.l.
