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.

  1. <hornetq-server></hornetq-server>
  2. <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

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -