When you go into the expression builder, say from a derived column, do you see the input schema like this?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
Looking for help to parse an XML string in azure data factory.
the simple example provided here does not include how to extract element attributes
https://learn.microsoft.com/en-gb/azure/data-factory/data-flow-parse
What would the expression be to extract id, name and address from the below XML.
When you go into the expression builder, say from a derived column, do you see the input schema like this?
Hi,
Would I be getting any inputs to parse a xml within a string ?
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ExtractDataResponse xmlns="https://www.rivosafeguard.com/ws">
<ExtractDataResult><DocumentElement> <DataTable> <someID>12375637</someID> <someother>241309</someother>
</DataTable> </DocumentElement></ExtractDataResult>
</ExtractDataResponse>
</soap:Body>
</soap:Envelope>
over here, the xml is encapsulated within a string !
and the data in the landing is also a string !
below is the output in my blob storage. is there a way I can parse this ?
Thanks !
"<DocumentElement>
<DataTable>
<someID>1237563</someID>
<someother>24139</someother>
</DataTable>
</DocumentElement>"