Question

i have a simple xml file in a wcf service that i am trying to load using Xelement.Load("sample.xml") which is not reading the file. What's the right way of doing this?

The service is supposed to return an xml to an asp.net application.

TIA

Was it helpful?

Solution

I got it to work by providing the ABSOLUTE path as the parameter to the XElement.Load() method, RELATIVE path would be better though.

OTHER TIPS

You should try something like this then.

var appPath = System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath; bodyFile = Path.Combine(appPath, @"<File Name Path");

This will work relative to your application's physical path.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top