1 Reply Latest reply on Jan 2, 2012 11:56 PM by jacklara

    AS7 messaging bridge is not working

    jacklara

      Hi Guys,

       

      I am new to JBoss and tired to setup a HornetQ messaging bridge with the following configuration. With this the standalone-full.xml start up properly

       

       

                      <bridges>

                          <bridge name="testbridge">

                              <queue-name>

                                  queue/test

                              </queue-name>

                              <forwarding-address>

                                  queue/Q

                              </forwarding-address>

                              <reconnect-attempts>

                                  -1

                              </reconnect-attempts>

                              <static-connectors>

                                  <connector-ref>

                                      in-vm

                                  </connector-ref>

                              </static-connectors>

                          </bridge>

                      </bridges>

       

       

      Both the queues are on the same server and on the same box. But when I try to send a message to "queue/test" it is not been received from  "queue/Q". However in the console I can see the messages are in "queue/test" and a consumer MDB is listening to "queue/Q" but the messages are not geeting forwarded to "queue/Q" from "queue/test"

       

      Am I missing something here? Why are the messages not getting forwarded to the target queue?