Dynamically switch WCF Web Service Reference URL path through config file

C#asp.netWcf

C# Problem Overview


How do you dynamically switch WCF Web Service Reference URL path through config file ?

C# Solutions


Solution 1 - C#

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

Solution 2 - C#

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!

Solution 3 - C#

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.

Solution 4 - C#

sure you can do this, have a look here: https://stackoverflow.com/questions/1317982/how-to-config-clients-for-a-wcf-service

it is absolutely normal to point to localhost in development and to change the address (url) in production in the web.config

Solution 5 - C#

you can´t chance endpoint url after any calling.

E.G.

in that case, you will get answer from NEWURL:

MyClient client = new MyService.MyClient();
client.Endpoint.Address = new EndpointAddress("NEWURL"); 
client.Hello(); //return is hello response from NEWURL

but if you will call any method before changing url, the url will be used from app.config, like next example:

MyClient client = new MyService.MyClient();
client.Endpoint.Address = new EndpointAddress("NEWURL"); 
client.Hello(); //return is hello response from BASEURL

Solution 6 - C#

I have been trying to do the same thing but most of the accepted answers in various posts just change the address. Currently under .net 4.7, simply changing the address itself does not work. If you have two different servers and wanting it to switch from one to the other, you have to do this:

var client = new MyService.Service1Client();
var newAdrEndpoint = new EndpointAddress(new Uri("second server address"));
client = new MyService.Service1Client(client.Endpoint.Binding, newAdrEndpoint);

Essentially you need to create a new service using the same binding from the first server and passing in the new address. This is the simplest method I have found.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMartin OngtangcoView Question on Stackoverflow
Solution 1 - C#ErinView Answer on Stackoverflow
Solution 2 - C#Phil LambertView Answer on Stackoverflow
Solution 3 - C#Ladislav MrnkaView Answer on Stackoverflow
Solution 4 - C#Davide PirasView Answer on Stackoverflow
Solution 5 - C#Tomáš HovorkaView Answer on Stackoverflow
Solution 6 - C#wirbleView Answer on Stackoverflow