Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello I need in a Talend ESB v9 route to keep only the occurences of an XML message body that have a specific value.
Example : If I required for T1 occurences,
<root> <occ> <name>A</name> <type>T1</type> </occ> <occ> <name>B</name> <type>T1</type> </occ> <occ> <name>C</name> <type>T2</type> </occ> </root>
Should give me
<root> <occ> <name>A</name> <type>T1</type> </occ> <occ> <name>B</name> <type>T1</type> </occ> </root>
kept in 1 message, not split per occurence.Regards
Arnaud