Hi,
I have an XML file with multiple tags, I want to split it into multiple events. What are the configuration need to add in props.conf file
Here is the example,
INFO 2015-01-08 10:16:49
<V_XML Version="2.0" Direction="Response">
<Enquiry >
<Result />
<3DSID>...</3DSIDID>
<CHAID>...</CHAID>
<CHADD>...</CHADD>
<EC>...</EC>
</Enquiry>
</V_XML>
-------------------
INFO 2015-01-08 10:16:50
<V_XML Version="2.0" >
<Transaction >
<CHAID>...</CHAID>
<CHADD>...</CHADD>
<Amt>...</Amt>
<Currency>...</Currency>
<EC>...</EC>
<ExpiryD>......</ExpiryD>
<MerchantRef>...</MerchantRef>
<CSCode>...</CSCode>
<PAN>...</PAN>
</Transaction>
</V_XML>
... View more