Hello
Can i do mappings from multiple source headers to one target header. I am providing a simple example below so as for people to understand it better.
<Name>
<FirstName></FirstName>
<LastName></LastName>
<MiddleName></MiddleName>
</Name>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
<Name>
<FirstName></FirstName>
<LastName></LastName>
<MiddleName></MiddleName>
</Name>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
<Address>
<FirstLine></FirstLine>
<SecondLine></SecondLine>
</Address>
Consider the above sequence of XML and suppose the address fields have to appear in the target destination do i need to map the address header also to the target header.And if i need to map it what is the design for the mapping.Or is there some other solution.
Thanks and Regards
Sharat