Configuring Hornetq core queue in Jboss standalone-full.xml -
i trying configure core-queue in jboss-eap-6.4. cannot find place (parent tag) enter hornetq core-queue configuration in standalone-full.xml
.
i aware can define core-queue in hornetq-configuration.xml
below
<queues> <queue name="jms.queue.selectorqueue"> <address>jms.queue.selectorqueue</address> <durable>true</durable> </queue> </queues>
what want add configuration in standalone-full.xml
. tried add above block in below tags. give me errors saying invalid xml.
<hornetq-server></hornetq-server>
<jms-destinations></jms-destinations>
can specify should add configuration in standalone-full.xml
ok... after searching hours, did configuration question. required configuration standalone-full.xml
below
<hornetq-server> . . <core-queues> <queue name="jms.queue.selectorqueue"> <address>jms.queue.selectorqueue</address> <durable>true</durable> </queue> </core-queues> . . </hornetq-server>
Comments
Post a Comment