Hi,
I have an Ensemble DTL which is suppose to translate the inbound XML document to an outbound XML document.
I need to test if a particular XML element exists, to perform some translation.
In the DTL I have the following,
<if condition='source.{element1.element2.element3}'>
<true>
// do something
</true>
</if>
How do you use if statement to test the source XML document to see if a particular element exists in the source doucment.
Thanks,