Hi
Depending on a value in incoming XML i what to choose beteween different nodes in the outgoing xml.
I set up an example to explain what I wan to do. In the example I use value=1 to choose to map all data in data to node data1 in outgoing message. If the value was 2 i map to data2 an so on.
XML Example:
<message-in>
<value>1</value>
<data>
……
</data>
</message-in>
<message-out>
<value1>1</value1>
<data1>
……
</data1>
<data2>
……
</data2>
<data3>
……
</data3>
</message-in>
What i s the best approach for doing this in the Biztalk mapper?
– Dag