Sklivvz
Sklivvz

Reputation: 31133

Specifying failover servers in c# webservice client

I need to build in some resilience in a web service client application. Are any of these two scenarios supported by the standard dot.net web service generated client (classic or 3.0)?

Load balancing the server or going through a proxy does not solve my problem, which is related to geographical resilience.

Any help would be appreciated, thanks!

Upvotes: 0

Views: 957

Answers (1)

Joe
Joe

Reputation: 42627

We've generally built our own layer; I don't think the default generated client code does anything like this.

More often, we define a custom configSection and then add a bunch of key/value pairs in that section. Then, we round-robin through that list for each request.

Upvotes: 1

Related Questions