Missing xml tags while parsing using XML node Iterator

Hi,

I am parsing the my input xml with node iterator and converting the each node to document but starting tag was missing in the resultant document.

The input xml looks like follows

<?xml version="1.0" encoding="UTF-8" ?> ------ ------

After converting it to document , it is missing tag…How to get this tag in resultant doc. If I am using XML node to Document,i am not having this issue.

Regards,
Satish Devineni

Either some mapping step is missing while converting to document…Can’t you force a root tag in a seperate map step (link all fields to the new root Document or Document type reference you already have and proceed further?

HTH,
RMG

Thank you for your suggetion…