We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Using JBoss Web Application Server
|
| Subject: |
|
How to configure message queues in JBoss |
| Date: |
|
2007-03-17 02:01:22 |
| From: |
|
DSaurabh
|
Response to: Good article
|
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
|