Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In hornetmq-jms.xml i see

<queue name="ExpiryQueue">
      <entry name="/queue/ExpiryQueue">
</queue>

but how to configure a topic?

in jboss 3.2.1 we did it throght jbossmq-destinations-service.xml

share|improve this question
Have you tried <topic name="..."> ? – skaffman Aug 26 '10 at 13:33

1 Answer

Download the HornetQ binary distribution and look at the 'topic' example. The file examples/jms/topic/server0/hornetq-jms.xml contains this:

<!--the topic used by the example-->
<topic name="exampleTopic">
  <entry name="/topic/exampleTopic"/>
</topic>

There are many other examples. Please up-vote if you find this useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.