I am currently using NativeXML in Delphi and I have this XML document with the following structure:
<?xml version="1.0"?>
<Request>
<RequestId>5429935816</RequestId>
<CompletedDate>2012-07-12T12:06:57+00:00</CompletedDate>
</Request>
<RequestId>
<RequestId>5428581330</RequestId>
<CompletedDate>2012-07-12T04:21:46+00:00</CompletedDate>
</Request>
Basically I need to know the value of each RequestID in the document.
Thank you in advance, and regards.