1 Reply Latest reply on Jun 8, 2010 9:15 PM by clebert.suconic

    Problem with Diverts to a topic

      If I create a divert to a queue like this:

       

      <diverts>

      <divert>

      <address>jms.queue.Test</address>

      <forwarding-address>jms.queue.ExampleQueue</forwarding-address>

      <exclusive>false</exclusive>

      </divert>

      </diverts>

       

      The message gets into the ExampleQueue correctly.

       

      If I change that to:

       


      <diverts>

      <divert>

      <address>jms.queue.Test</address>

      <forwarding-address>jms.topic.DivertTopic</forwarding-address>

      <exclusive>false</exclusive>

      </divert>

      </diverts>

       

      The message never makes it.

       

      What am I overlooking?

       

      Thanks

        • 1. Re: Problem with Diverts to a topic
          clebert.suconic

          Messages will only be routed to the topic if there are subscriptions.

           

          Or you make a durable subscription.. or make a regular subscription before you send the messages. (just like it was supposed to on Topics).

           

           

          Now, if you're seeing something different we would need a test to either understand what you're doing or to validate a possible bug.