Click here to Skip to main content
Licence CPOL
First Posted 12 Oct 2008
Views 23,548
Bookmarked 28 times

Use XpathNavigator to navigate and edit XML data

By David Rosa | 12 Oct 2008 | Unedited contribution
Use the XPathNavigator to edit and read XML. This article demonstrates how you can do, using conditions.
1 vote, 20.0%
1

2
2 votes, 40.0%
3

4
2 votes, 40.0%
5
3.50/5 - 5 votes
μ 3.50, σa 2.93 [?]

Introduction

Use the XPathNavigator to read XML. This article demonstrates how you can do, using conditions.

Background

- ASP.NET, C# Medium Knowledge.

- XML and XPATH Knowledge.

Using the code

This article demonstrates how to read data from a XML File, using XPATH. So, let the words aside and go to work.

This is the XML Source:

      
<?xml version="1.0" encoding="utf-8" ?>
<Roles>
<Role name="Admin">
<Username><![CDATA[hGUC0QB2G3l1cb0YSnJkUJpcQB2cv6h3]]></Username>
<Password><![CDATA[P3W+pDC2Vn/TH1Bbgmm/1A==]]></Password>
</Role>
</Roles>
 
//Next, this is the method to get values from XML file:

private MyCredential[] GetAdminCredentials()
{
HttpServerUtility server = HttpContext.Current.Server;
List<MyCredential> credentials = new List<MyCredential>();
try
{
XmlDocument xmlDocument = new XmlDocument();
string filename = @".\Roles.xml";
xmlDocument.Load(server.MapPath(filename));
XPathNavigator nav = xmlDocument.CreateNavigator();
XPathNodeIterator iterator = nav.Select("Roles/Role[@name='Admin']"); //this is a condition. Only nodes which contains role name = 'admin' are processed.
while (iterator.MoveNext()) //while there are nodes where role name='admin'
{
MyCredential credential = new MyCredential();
iterator.Current.MoveToChild("Username",string.Empty);
credential.Username = CryptographyServices.Decrypt(iterator.Current.Value);
iterator.Current.MoveToParent(); //move to root
iterator.Current.MoveToChild("Password", string.Empty);
credential.Password = CryptographyServices.Decrypt(iterator.Current.Value);
credentials.Add(credential);
iterator.Current.MoveToParent(); //move to root again
}
return credentials.ToArray();
}
catch (Exception innerException)
{
throw innerException;
}

}

Points of Interest

In next article we will update a xml file using CData Sections. Thanks for your attention.

History

Keep a running update of any changes or improvements you've made here.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

David Rosa

Engineer
GISP Software, SA.
Portugal Portugal

Member
Degree in Computer Engineering at the Autonomous University of Lisbon - Portugal (UAL - Universidade Autónoma de Lisboa).
Worked at Unisys Portugal in ASP.NET 2.0 Technology and Microsoft Office SharePoint Server 2007 not forgetting adjacent technologies.
Worked also as Technical Coordinator of the GMTS's (Global Media Technology Solutions) Junior Development Team in the Portals Area, using Microsoft Office SharePoint Server 2007, ASP.NET, WPF, Silverlight and Frameworks 2.0, 3.0 and 3.5.
Now,he is working for GISP Software SA, a software house focused in the media market, as Software Engineer.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks PinmemberAboShehab_FCIS3:19 28 Oct '09  
GeneralUse Linq to XML instead PinmemberWileCoyot11:10 13 Oct '08  
GeneralRe: Use Linq to XML instead Pinmemberbaudhayana22:05 1 Sep '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 12 Oct 2008
Article Copyright 2008 by David Rosa
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid