I have a rather straightforward window desktop app which when i try to compile, I am getting above error.
I have references System.Web.Services assemble and also reference to assembly provided by another app. That app exposes and object called contentManger and it has and Url that i can access so basically here is my code.
ContentManager cm = new ContentManager();
cm.Url = "http://servername:9900/p2pd/servlet/";
Why am i getting file not found exception?
Thnaks,