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

I've created a simple MDB application and deployed it to Glassfish v 3.1 with embedded MQ broker. Destination Resource with name "jms/Queue" was created as well. Please see part of the code below:

    @MessageDriven(
       mappedName = "jms/Queue",
       activationConfig = {
          @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
        }
    )

    public class MessageBean implements MessageListener {

         public void onMessage(Message message) {
........

This works fine, but how to configure this application to work with remote MQ broker instance(located on another host)?

share|improve this question
Please add more details. Do you have 2 GlassFish instances, one in ServerA, and one in ServerB, and you want that both instances use the MQ broker of ServerA? – perissf Jun 8 '12 at 12:50

1 Answer

up vote 1 down vote accepted
+50

You have two options:

  • Use the REMOTE mode when configuring your JNDI resources for ConnectionFactory and Queue entities so these entities are hosted by a remote OpenMQ.

  • Configure a bridge to connect together two queues hosted in difference instances. Here is the documentation reference about that feature.

share|improve this answer
Could you please tell how to configure connectionFactory and associate it with MBean? – Viktors Oginskis Jun 18 '12 at 11:21
MBean often refers to JMX entities... I guess you mean MessageBean. I cannot be more clear that the description and Glassfish admin console snapshot from the link about "REMOTE" mode. Please read it carefully. End of part 1 is about ConnectionFactory creation in JNDI. – Yves Martin Jun 18 '12 at 13:40

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.