Hello to everyone, I need for your help. I'm trying to extract some information from this xml file.
<?xml version="1.0" encoding="utf-8"?>
<root>
<page>
<item name="Modelo(Zonal OCR)" value="IM 550F" />
<item name="Serie(Zonal OCR)" value="3209X711378" />
</page>
<page>
<item name="Modelo(Zonal OCR)" value="" />
<item name="Serie(Zonal OCR)" value="" />
</page>
</root>
This file is generated trought a scan application, that extract some information by OCR, this informations is rendered in an index file in format txt, csv or xml. With this information, i try to create a new element in a list, or update the properties into a file in a document library. But i can't obtain the information for "Modelo" or "Serie"
I try to use the xpath function like this
"xpath(outputs('xml'),'//*[local-name()="root"]/page[1]/item[1]/@value'), but it only returns an error."
How i can acces the values of "Modelo" or "Serie".
Tahnks for your help