Click here to Skip to main content
Licence CPOL
First Posted 12 Oct 2008
Views 9,370
Bookmarked 26 times

Make More Efficient Access to XML Data with XPathNavigator Object

By David Rosa | 12 Oct 2008
This article aims to demonstrate the usefulness of the XPathNavigator object to access the XML data, more quickly and efficiently.

1
1 vote, 50.0%
2

3
1 vote, 50.0%
4

5
2.67/5 - 2 votes
μ 2.67, σa 2.47 [?]

Introduction

Sometimes, in software projects we need to make the access to data more quickly and efficiently. So, there is the usefulness of the XPathNavigator object, which allows us to access the XML data more efficiently, quickly and in an easier way. Take a look.

Background

  • ASP.NET C# initial/medium knowledge
  • XML, XPATH knowledge

Using the Code

Given below is the source code, you can use it and even improve it. I hope that helps you in the future.

We'll try to parse the next XML document:

<?xml version="1.0" encoding="UTF-8"?>
<Configurations>
<AccessConfigurations>
<Username><![CDATA[da61r6kM29/7Q5GIQVDaDA==]]></Username>
<Password><![CDATA[2yGGVQ19TmC0hvL+gwXdgw==]]></Password>
</AccessConfigurations>
</Configurations>
//This is a helper class, which encapsulates our credentials.

[Serializable]
public class MyCredential
{
#region Properties.

/// <summary>
/// Represents the Username.
/// </summary>

private string _username;
public string Username
{
get { return _username; }
set { _username = value; }
}

/// <summary>
/// Represents the Password.
/// </summary>

private string _password;
public string Password

{
get { return _password; }
set { _password = value; }
}

#endregion

#region Constructors.

/// <summary>
/// Default Constructor.
/// </summary>

public MyCredential()
{
}

/// <summary>
/// Constructor with parameters.
/// </summary>
/// <param name="username">Represents the username.</param>
/// <param name="password">Represents the password.</param>

public MyCredential(string username, string password)
{
    this.Username = username;
    this.Password = password;
}

#endregion
}

//Method to parse the XML. This method could be executed on a Page for example 
//or inside a business service, which is more cool. 
//Use SOA architecture to do this (I prefer). This method should be at DAL. 

public MyCredential[] GetAccessConfigurations()
{
HttpServerUtility server = HttpContext.Current.Server;  
string username = string.Empty;
string password = string.Empty;
List<MyCredential> credentials = new List<MyCredential>();
try
{
string fileUrl = @".\TestFiles\Test.xml";
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(server.MapPath(fileUrl));
XPathNavigator nav = xmlDocument.CreateNavigator();
username = nav.SelectSingleNode("Configurations/AccessConfigurations/Username").Value;
password = nav.SelectSingleNode("Configurations/AccessConfigurations/Password").Value; 
credentials.Add(new MyCredential(username, password));
return credentials.ToArray();
}catch (Exception innerException)
{
throw innerException;
}
}

Points of Interest

I hope you learned with this tutorial. If you have any questions, please send them to davidalexrosa@gmail.com. Thanks!

History

  • 12th October, 2008: Initial post

In the next article, we will use conditions and CDATA Sections with XPathNavigator. I hope you enjoy it as much as I do.

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
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web04 | 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