this is basically image of an .xml but I am tryin to extract it from .xml document
I tried → deserialise xml acitivity but after that didn’t get the solution
this is basically image of an .xml but I am tryin to extract it from .xml document
I tried → deserialise xml acitivity but after that didn’t get the solution
assuming xml is the output from your Deserialize activity
Something like this might work. I don’t usually work with xmls but others may have better solutions
xml.Element("OrderRequest").Element("OrderRequestHeader").Attribute("orderID").Value
Add any ancestors before OrderRequest if there are.
otherwise xml.Descendants() may also work
@anjasing
have a look here:
Thank you so much
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.