I added a web service reference to my project that is pointing at a
development web service. I want to change this to point to a staging server,
etc. via a config file reference rather than hardcode it into the compile.
How do I do this?
Josh Twist - 11 Jan 2006 08:35 GMT
MyService myService = new MyService();
myService.Url = "http://myendpoint.com/service.asmx"; // you probably
want to read this from config.
Josh
http://www.thejoyofcode.com/