Search code examples
wcfloadxelement

WCF - reading an xml file in a service using XElement.Load


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


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.