Hello,
I thought I had fixed this issue, but for wahtever reason it is back.
I have a map which is not breaking up the original schema into the
proper format. Seems like the top element under root is being sent
all data from the incoming lines. When I drop one line it works, but
if I dropped the next 3 lines I would receive the following:
Any help on this is greatly appreciated as last time I reconstructed
teh schema to fix the issue which is time consuming. thanks in
advance
SCHEMAS
Source Schema
Root
ItemRecord
item1
item2
item3
Dest Schema
Root
ItemRecord2
item1
item2
item3
I am mapping ItemRecord to ItemRecord2. When I drop more than one
line I get the following
<root>
<ItemRecord2>
<item1>
<item1>
<Item2>
<Item2>
<Item3>
<Item3>
</ItemRecord2>
</root>
Rather than
<root>
<ItemRecord2>
<item1>
<Item2>
<Item3>
</ItemRecord2>
<ItemRecord2>
<item1>
<Item2>
<Item3>
</ItemRecord2>
</root>