Hi,
I am in a project where I want to migrate an application from Weblogic to JBoss.I have the following entry in weblogic server's config.xml for a message queue:
<JMSQueue Name="XXX Queue"
ErrorDestination="XXX-errorQueue"
RedeliveryDelayOverride="60000" RedeliveryLimit="1"
JNDIName="XXX-Queue" StoreEnabled="true"/>
I have got a JBoss MQ entry as following:
<mbean code="org.JBOSS.mq.server.jmx.Queue"
name="JBOSS.mq.destination:service=Queue,name=XXX-Queue">
<depends optional-attribute-name="DestinationManager">
JBOSS.mq:service=DestinationManager
</depends>
</mbean>
I do not know what attribute should I enter in JBoss configuration for the following:
<Redelivery Delay Override>
RedeliveryLimit
StoreEnable
ErrorDestination
Some guidance provided will be highly appreciated.
Thanks
Saurabh
|