up vote 0 down vote favorite
share [g+] share [fb]

Is it possible to use a relative URI when setting the Source property on an XmlDataProvider object in .NET? I get the following exception:

IOException:System.IO.IOException: Cannot locate resource 'configuration.xml'.

When I set the Source property using an absolute URI, everything works as expected:

provider.Source = new Uri(@"C:\bin\Configuration.xml", UriKind.Absolute);

However when I try using a relative URI I get the exception:

provider.Source = new Uri(@"Configuration.xml", UriKind.Relative);

My assemblies are all located in the same directory as the configuration file. What's wrong here?

link|improve this question

feedback

2 Answers

Try this: FileInfo file = new FileInfo("configuration.xml"); provider.Source = new System.Uri(file.FullName);

link|improve this answer
feedback

I used a similar approach as mentioned above, and all worked out. thanks Ivan.

Cory

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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