MQeEarthQM to MQeMoonQM

Because the MQeMoonQM is not attached to the network for most of the time, use a store-and-forward queue on the MQeEarthQM to collect messages destined for the MQeMoonQM queue manager.
On MQeEarthQM:
  1. Define a store-and-forward-queue with the following parameters:

    Queue name: TO.HANDHELDS
    Queue Manager Name: MQeEarthQM

  2. Add a queue manager to the store-and-forward queue using the following parameters:

    Queue Name: TO.HANDHELDS
    Queue manager: MQeMoonQM

A (similarly named) home-server queue is needed on the MQeMoonQM queue manager. This queue pulls messages out of the store-and-forward queue and puts them to a queue on the MQeMoonQM queue manager.
On MQeMoonQM:
  1. Define a home-server queue with the following parameters:

    Queue Name: TO.HANDHELDS
    Queue manager name: MQeEarthQM

Any messages arriving at MQeEarthQM that are destined for MQeMoonQM are stored temporarily in the store-and-forward queue TO.HANDHELDS. When MQeMoonQM next connects to the network, its home-server queue TO.HANDHELDS gets any messages currently on the store-and-forward queue, and delivers them to the MQeMoonQM queue manager, for storage on local queues.

Applications on MQeEarthQM can now send messages to MQeMoonQ in an asynchronous manner.

Parent topic: Bridge configuration example