XmlData

@pradyumn.agrawal
let us break down step by step and try to get it solved.

When you deserialze the XML string with the deserialize activity you will get back Datatype XDocument.
For with dealing with namespaces on a XDocument you have to work with XNamespaces.

Have a look here:

so in a first step I would suggest to identify a XML element of interest, setup the XNamspaces as done in the sample from link above and retrieve the element.

Once this is working we can go the next step.

Before doing any action check that your XML is valid and without any structure isues, as this will disturb the work

1 Like