Hi,
I have an xml file but it can't be read by the Xml to Recordset behaviour. The problem lies in the fact that there are two child nodes. e.g:
<?xml version='1.0' encoding='UTF-8'> <root> <array> <elem> <target>This one</target> <time>14.6999998092651</time> </elem> </array> </root>
All i get in the fields list is the elem repeat over and over again. If I remove the word <root> e.g.
<array> <elem> <target>This one</target> <time>14.6999998092651</time> </elem> </array>
It works great. Is there a way that it can recognise more than just on sub node? I can not do a search and replace on the xml file as I get it from an external source.
I hope you understand what I am trying to say. [:p]
Thanks. |
|
|