Dynamically switch WCF Web Service Reference URL path through config file Dynamically switch WCF Web Service Reference URL path through config file asp.net asp.net

Dynamically switch WCF Web Service Reference URL path through config file


Are you just wanting to override the URL that is in the config to a different url. Say you have a test service and a live service. You can just do this.

client.Endpoint.Address = new EndpointAddress(Server.IsLiveServer() ?    @"LiveUrl" : @"TestURl"); 

Where those url come from wherever you want


Just to expand on the answer from Erin: -

MyClient client = new MyService.MyClient();client.Endpoint.Address = new EndpointAddress(new Uri("insert new url here"),    client.Endpoint.Address.Identity, client.Endpoint.Address.Headers);client.Open();

HTH!


There is no dynamic switching. Each time you want to use another URL you must create new instance of service proxy (client) and pass EndpointAddress or enpoint configuration name to the constructor.