Delphi 2010 を使用して、TXMLDocument を使用して、次の XML サンプル データから Location、Smartcard_Location、および Integrated_Location の URL を読み取りたいと考えています (不要な部分は省略しています)。
<?xml version="1.0" encoding="UTF-8"?>
<PNAgent_Configuration xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance">
<Request>
<Enumeration>
<Location replaceServerLocation="true" modifiable="true" forcedefault="false" RedirectNow="false">http://2003xa/Citrix/PNAgent/enum.aspx</Location>
<Smartcard_Location replaceServerLocation="true">https://2003xa/Citrix/PNAgent/smartcard_enum.aspx</Smartcard_Location>
<Integrated_Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/integrated_enum.aspx</Integrated_Location>
<Refresh>
<OnApplicationStart modifiable="false" forcedefault="true">true</OnApplicationStart>
<OnResourceRequest modifiable="false" forcedefault="true">false</OnResourceRequest>
<Poll modifiable="false" forcedefault="true">
<Enabled>true</Enabled>
<Period>6</Period>
</Poll>
</Refresh>
</Enumeration>
</Request>
</PNAgent_Configuration>
データはすでに Web サーバーから TXMLDcoument にロードされています。このデータを解析して URL を文字列値に変換する最も簡単な方法は何ですか?