Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm studing wcf. In my test project Service read data from xml file and then send it to client. Data is array of type "myClass".
Service class has a function
C#
private XDocument GetDB()
        {
           
            string filePath = "SampleDB.xml"           
            return XDocument.Load(filePath);
        }

This function works when I run the service application. But when I call service from client it doesn't work.

The copy of xml file located in bin->debug folder. but when i run programm, I see exception like this "Could not find file 'C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\SampleDB.xml'."

How can I solve this?
Posted
Updated 22-Dec-12 10:59am
v2

1 solution

You need to specify the path! by asking for just the file, the site will not work out where it is for you. Specify the path and you will be ok.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900