Transaction Server Event Handler Configuration

To automate outbound accounting processing as batches (ICLs) exit the system, the Transaction Server must be configured to alert the outbound accounting task of specific outbound batch (ICL) events. The following XML example shows a typical configuration using the Transaction Server Scheduler.xml file to set up the requisite event reporting.
<PARAMETERSET name="sendToAccountingOutbound">
  <PARAMETER name="destinationID">Outbound Accounting</PARAMETER>
  <PARAMETER name="jmsSendQueue">FXH.SERVICESFRAMEWORK.INPUT.QUEUE</PARAMETER>
</PARAMETERSET>

<EVENT>
  <NAME>Accounting Outbound - Outbound Presentment Group State change</NAME>
  <TYPE>OutPresentmentGroupState</TYPE>
  <EXEC>
    com.ibm.paydir.ima.txsvr.event.appbridge.OutPresentmentGroupStatesEventHandler
  </EXEC>
  <PARAMETER name="msgType">TaskInitiation</PARAMETER>
  <PARAMETER name="presStates1">SENT</PARAMETER>
  <PARAMETERREF>schedulerReferenceProperties</PARAMETERREF>
  <PARAMETERREF>sendToAccountingOutbound</PARAMETERREF>
</EVENT>
Note: The value specified in the destinationID parameter must match the configuration value specified in the outbound accounting task configuration name.