I have this xml file "target.xml":

<World>
  <Nkvavn>
    <Rcltwkb>
      <Pjwrgsik />
      <Nemscmll />
      <Fnauarnbvw />
      <Egqpcerhjgq />
      <Olyhryyxi />
      <Vvlhtiee />
      <Wlsfhmv />
    </Rcltwkb>
    <Xudbhnakjb>
      <Cwxjtkteuji />
      <Fbtcvf />
      <Uviaceinhl />
    </Xudbhnakjb>
    <Kgujcymilwr>
      <Nlbvgtwoejo />
      <Tvufkvmryybh />
      <Xtomstcenmp />
      <Mhnngf />
      <Fjidqdbafxun />
    </Kgujcymilwr>
    <Taiyiclo>
      <Fiecxoxeste />
      <Loqxjq />
      <Vfsxfilxofe />
      <Hroctladlht />
    </Taiyiclo>
  </Nkvavn>
  <Tfrosh>
    <Tuqomkytlp>
      <Oyvivlvminhn />
      <Qeypvfgul />
      <Mbapjl />
    </Tuqomkytlp>
    <Rvxumtj>
      <Gkvigncdvgy />
      <Okcddyi />
      <Vvmacul />
    </Rvxumtj>
    <Pdjpgexuyc>
      <Yvsdmbckurju />
      <Bvkxvg />
      <Clmrvjwk />
      <Hdafjhydj />
      <Asauxtnoe />
      <Mwcviwmi />
    </Pdjpgexuyc>
  </Tfrosh>
</World>

In the method BindCities(string country) i am trying to get to the country element () but the nav variable doesn't change it's value to the country element after running the code, it just stays at the last location. I tried a lot of methods but nothing worked.

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Xml;
using System.Xml.XPath;

namespace MultipleBoundListBox
{
    public partial class Form1 : Form
    {
        private static XmlDocument xmlDoc;
        private static XPathNavigator nav;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            xmlDoc = new XmlDocument();
            xmlDoc.Load(@"target.xml");

            nav = xmlDoc.DocumentElement.CreateNavigator();

            nav.MoveToFirstChild();
            var countries = new List<string>();
            countries.Add(nav.LocalName);

            while (nav.MoveToNext())
            {
                countries.Add(nav.LocalName);
            }

            listBox1.DataSource = countries;

            BindCities(countries[0]);
        }

        protected void BindCities(string country)
        {
            nav.MoveToRoot();
            var xpath = "//" + country;
            nav.SelectSingleNode(xpath);
            nav.MoveToFirstChild();

            var cities = new List<string>();
            cities.Add(nav.LocalName);

            while (nav.MoveToNext())
            {
                cities.Add(nav.LocalName);
            }

            listBox2.DataSource = cities;
        }
    }
}

What code do i need to reach the country element with the nav XPathNavigator?

Thanks for your replies!

link|improve this question

I might be smoking crack, but, I can't even see a Country element! :) – Paul Carroll Aug 5 '11 at 12:21
country element as in the element with the name of the string contained in the country parameter of BindCities() :) in this case its value is countries[0] which is "Nkvavn" – Răzvan Panda Aug 5 '11 at 12:25
Also, use XPathVisualizer! xpathvisualizer.codeplex.com/releases/66455/download/240321 – Ranhiru Cooray Aug 5 '11 at 12:26
feedback

1 Answer

up vote 2 down vote accepted

The proper use of the SelectSingleNode method is as follows:

XPathNavigator node = nav.SelectSingleNode(xpath);
if (node != null) {
  // now access properties of node here e.g. node.LocalName
}
else {
  // if needed handle case that xpath did not select anything
}
link|improve this answer
ok, i got it, i thought nav.SelectSingleNode(xpath); moves nav to the selected node but it actually returns it :) thanks for help +1 – Răzvan Panda Aug 5 '11 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.