Hi,
I'm trying to write a Delphi Application that parses some xml data from a remote webserver. The structure of the xml data obtained from the remote source is as follows.
What is the simplest way to download and parse this info using the TXMLDocument component in delphi ?
I would want to load the obtained data into an array for further processing.
<newsItems>
<item>
<itemType>story</itemType>
<itemExpiryDateTime>unix timepstamp</itemExpiryDate
Time>
<itemId>23</itemId>
</item>
<item>
<itemType>message</itemTyp
e>
<itemExpiryDateTime>unix timepstamp</itemExpiryDate
Time>
<itemId>23</itemId>
</item>
</newsItems>
Start Free Trial