Hi,
I need to dynamically add some elements into existing xml file, but they should contain namespaces.
I'm able to navigate through elements using /*[local-name()='name'] expressions, but I can't figure out how to add new elements.
Here is an example:
<abc:Body>
<abc:Reports>
<abc:Summary>
</abc:Summary>
</abc:Reports>
</abc:Body>
I need to add the <abc:Summary> element.