Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / C#

Retrieving settings in different XML configuration formats

Rate me:
Please Sign up or sign in to vote.
1.44/5 (6 votes)
2 Jul 2006CPOL 24K   10   2
A simple code that retrieves configurations from an external XML file.

Introduction

We always use the regular app.config or web.config. But sometimes, we want our configuration files to be more flexible. Here's a simple piece of code that will allow you to use more customizable config files.

The Code

What I did here was to create an XmlTextReader and an XPathNavigator to make things easier for me.

C#
xmlTextReader = new XmlTextReader (configurationPath); 

The rest was simple iterations:

C#
XPathNodeIterator iterator = _xPathNavigator.Select(XPath);
while (iterator.MoveNext())
{htValues.Add(iterator.Current.GetAttribute(attributeKey, string.Empty), 
              iterator.Current.Value);}

If you want to use the library, all you have to do is call the GetValue method. Please see the sample application.

Notes

It's just a simple piece of code. Originally, it was started by a friend, Ivy. But we needed to modify the original version as the need for reusability came in. Of course, you would want to use some objects in between that will fetch the code for you. I used straightforward calls just to show how to fetch the settings (plus, I'm busy with work :p).

C#
x.GetValue("Configuration/LonerSetting")

License

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


Written By
Web Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionXML USage as Config Pin
ewewewewewe4-May-07 1:58
ewewewewewe4-May-07 1:58 
Questionwhat is xml mean Pin
primey1-Oct-06 19:45
primey1-Oct-06 19:45 
can you give tutorial on background information such as the xml

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

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