0

Unable to read this xml in c#. How do I get the Currency and rate from this xml

I used this code

XmlTextReader xmlTextReader = new XmlTextReader(new StringReader(xmlfile));
XmlDocument doc = new XmlDocument();
XmlNode node = doc.ReadNode(xmlTextReader);

but did not get the values.

 <?xml version="1.0" encoding="UTF-8"?>
 <gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns="http://www.ecb.int/vocabulary/2002-08-01/eurofxref">
<gesmes:subject>Reference rates</gesmes:subject>
<gesmes:Sender>
    <gesmes:name>European Central Bank</gesmes:name>
</gesmes:Sender>
<Cube>
    <Cube time='2013-02-14'>
        <Cube currency='USD' rate='1.3327'/>
        <Cube currency='JPY' rate='124.39'/>
        <Cube currency='BGN' rate='1.9558'/>
        <Cube currency='CZK' rate='25.383'/>
        <Cube currency='DKK' rate='7.4604'/>
        <Cube currency='GBP' rate='0.85940'/>
        <Cube currency='HUF' rate='292.52'/>
        <Cube currency='LTL' rate='3.4528'/>
        <Cube currency='LVL' rate='0.6997'/>
        <Cube currency='PLN' rate='4.1765'/>
        <Cube currency='RON' rate='4.3871'/>
        <Cube currency='SEK' rate='8.4492'/>
        <Cube currency='CHF' rate='1.2293'/>
        <Cube currency='NOK' rate='7.3605'/>
        <Cube currency='HRK' rate='7.5863'/>
        <Cube currency='RUB' rate='40.1712'/>
        <Cube currency='TRY' rate='2.3605'/>
        <Cube currency='AUD' rate='1.2879'/>
        <Cube currency='BRL' rate='2.6220'/>
        <Cube currency='CAD' rate='1.3343'/>
        <Cube currency='CNY' rate='8.3062'/>
        <Cube currency='HKD' rate='10.3352'/>
        <Cube currency='IDR' rate='12873.40'/>
        <Cube currency='ILS' rate='4.9036'/>
        <Cube currency='INR' rate='71.8730'/>
        <Cube currency='KRW' rate='1445.93'/>
        <Cube currency='MXN' rate='16.9523'/>
        <Cube currency='MYR' rate='4.1170'/>
        <Cube currency='NZD' rate='1.5715'/>
        <Cube currency='PHP' rate='54.251'/>
        <Cube currency='SGD' rate='1.6491'/>
        <Cube currency='THB' rate='39.728'/>
        <Cube currency='ZAR' rate='11.8588'/>
    </Cube>
</Cube>

Tomasz Nurkiewicz
  • 334,321
  • 69
  • 703
  • 674

2 Answers2

3

You can always do the XML read using XPath but I strongly recommend you using LINQ to XML (.NET 3.5) if at all possible:

XDocument doc = XDocument.Load(url);
XNamespace gesmes = "http://www.gesmes.org/xml/2002-08-01";
XNamespace ns = "http://www.ecb.int/vocabulary/2002-08-01/eurofxref";
var cubes = doc.Descendants(ns + "Cube")
               .Where(x => x.Attribute("currency") != null)
               .Select(x => new { Currency = (string) x.Attribute("currency"),
                                  Rate = (decimal) x.Attribute("rate") });
foreach (var result in cubes)
{
    Console.WriteLine("{0}: {1}", result.Currency, result.Rate);
}

cubes stores your required values viz. Currency and Rate

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194
Bhushan Firake
  • 9,338
  • 5
  • 44
  • 79
0

In order to get the value or attribute of one node, you need to find this node first.
A traditional approach:

string query = "//Cube[@currency and @rate]";//select the cube node that has "currency" and "rate" attributes.
XmlNodeList nodes = doc.SelectNodes(query);
foreach (XmlNode node in nodes)
{
    string currency = node.Attributes["currency"].Value;
    string rate = node.Attributes["rate"].Value;
    Console.WriteLine("currency: {0}, rate: {1}", currency, rate);
}  

Hope it's helpful.

Xiaodan Mao
  • 1,648
  • 2
  • 17
  • 30