The Distribution Engine Notifying the Transaction Server

The Distribution engine posts messages to the queue where the Transaction Server listens for Distribution engine responses. To receive these messages, the Transaction Server must be configured with a JMS listener profile. The following sample JMS Listener configuration XML listens to a queue named FXH.TRANSSERVER.INPUT.QUEUE using queue manager FTM.QMANAGER.
Figure 1. Sample XML for Listening to a Queue
<?xml version="1.0" encoding="UTF-8"?>
<listenerProfiles>
   <listenerProfile name="DistributionEngine" enabled="true">
      <numListeners>1</numListeners>
      <client>false</client>
      <hostname>localhost</hostname>
      <channel>SYSTEM.DEF.SVRCONN</channel>
      <port>1414</port>
      <queueManager>FTM.QMANAGER</queueManager>
      <receiveQueue>FXH.TRANSSERVER.INPUT.QUEUE</receiveQueue>
      <errorQueue>FXH.TRANSSERVER.ERROR.QUEUE</errorQueue>
   </listenerProfile>
</listenerProfiles> 
For more information on the listenerProfile configuration, see JMS listener properties.