Testing

This example shows what the input message of a Decision Service Node looks like. Place it on the TEST.IN queue.

<?xml version="1.0" encoding="UTF-8" ?>
<EventBatch xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <FinancialEvents>
       <ID>ID_R1</ID>
       <parentID />
       <type>OPENING</type> 
       <date>2004-01-14</date> 
       <processed>false</processed>
       <accountID>123</accountID>
   </FinancialEvents>
   <CashEvents>
       <ID>ID_R2</ID>
       <parentID />
       <type>CREDIT</type>
       <date>2004-01-16</date>
       <processed>false</processed> 
       <accountID>456</accountID>
       <amount>150</amount>
       <currency>EUR</currency>
       <originAccountID>123</originAccountID>
   </CashEvents>
   <CashEvents>
       <ID>ID_R3</ID>
       <parentID />
       <type>TRANSFER</type>
       <date>2004-01-23</date>
       <processed>false</processed>
       <accountID>123</accountID>
       <amount>23</amount>
       <currency>EUR</currency>
       <originAccountID>456</originAccountID>
   </CashEvents>
   <CashEvents>
       <ID>ID_R4</ID>
       <parentID />
       <type>CREDITCARD</type>
       <date>2004-01-23</date>
       <processed>false</processed>
       <accountID>123</accountID>
       <amount>-80</amount>
       <currency>EUR</currency>
       <originAccountID>456</originAccountID>
   </CashEvents>
   <Accounts>
       <ID>123</ID>
       <currency>EUR</currency>
       <balance>500</balance>
       <denied>false</denied>
       </Accounts>
       <Accounts>
       <ID>456</ID>
       <currency>USD</currency>
       <balance>200</balance>
       <denied>false</denied>
   </Accounts>
</EventBatch>