Hello,
A colleague and myself are trying to figure out how to get XML from an HTTP response into an Azure SQL table. We can get the response to write to file on a shared drive, but can't seem to find info on how to parse out the XML and write it to a Azure SQL table.
Any leads?
Thank you!
Hi @ericonline ,
Do you want to parse XML data then store it to Azure SQL table?
Please consider using function xpath:
I have made the following test to parse XML data, please check the following configuration.
Add a compose action with the following XML data:
<?xml version="1.0"?> <Users> <User1 type="System.String">mabel</User1> </Users>
Add Compose 2 with the following code:
xpath(xml(outputs('Compose')),'string(/Users/User1)')
Then you could store the returned data to SQL Azure table.
Please take it for a reference.
Best regards,
Mabel
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
21 | |
21 | |
9 | |
8 | |
7 |
User | Count |
---|---|
33 | |
31 | |
25 | |
21 | |
11 |