I have to use a look-up feature to filter messages that are sent to a service. This is a sample input xml(simplified). Now, I need to use Tags <ID>
and <Name>
to look-up to a database table.
My sample I/P:
<Root>
<A>
<ID>100<ID>
<Name>abc</Name>
</A>
<B>
...
</B>
<Root>
I need to publish to the target service only when the input ID/Name are present in the look-up table.
How can I do this? Should I go for DVM instead? Why?