1 Reply Latest reply on Sep 30, 2015 5:43 AM by isurul

    Configuring Hornetq core queue in Jboss standalone-full.xml

    isurul

      I am trying to configure Hornetq core-queue in Jboss-eap-6.4. But I cannot find a place (parent tag) to enter Hornetq core-queue configuration in standalone-full.xml.

      I am aware that I can define core-queue in hornetq-configuration.xml as below

      <queues>     
        <queue name="jms.queue.selectorQueue">
           <address>jms.queue.selectorQueue</address>
           <durable>true</durable>
        </queue>
      </queues>
      

       

      What i want is to add this configuration in standalone-full.xml. I tried to add above block under below tags. They give me errors saying invalid xml.  

      1. <hornetq-server>
      2. <jms-destinations>

      Can you specify where I should add the configuration in standalone-full.xml

        • 1. Re: Configuring Hornetq core queue in Jboss standalone-full.xml
          isurul

          ok... after searching for hours, I did get the configuration from an another question. Hope this will help someone.


          <hornetq-server>
          .
          .
            <core-queues>   
              <queue name="jms.queue.FromQueue">
                      <address>jms.queue.FromQueue</address>
                      <durable>true</durable>
                </queue>
            </core-queues>
          .
          .
          </hornetq-server>