Thanks, that gets me a step further along. What I am having trouble with is setting up multiple servers with the same Web Service (debug, testing, production). All that really needs to change is the URL. I would like to do this without developing 3 seperate references in my code.
#if DEBUG
private const string WS_URL = "DebugServer\TTCall.asmx"
#else
private const string WS_URL = "ProductionServer\TTCall.asmx"
#endif
I have experimented with changing the URL on the fly. It worked for awhile. After a reload of VS it began to bitch that things were not in order. Any one have a better way of dealing with this issue?