Load-balancing / routing with WCF

  • Thread starter Thread starter msdotnetclr
  • Start date Start date
M

msdotnetclr

I'm not sure if it is a good place to ask this question since there is
not microsoft.public.dotnet.framework.wcf group.

I just get started on WCF programming. The question I have is how to
do load-balancing / routing with WCF.

For example, I have 3 application servers running my services based on
WCF. Many client machines access these servers to use the services. I
want to allow the client machine switch to another server
automatically (transparently to the client) when the current server is
down or the currently server is fully loaded.

Can anyone tell me how to do that?

Thanks,
Miracle
 
I'm not sure if it is a good place to ask this question since there is
not microsoft.public.dotnet.framework.wcf group.

I just get started on WCF programming. The question I have is how to
do load-balancing / routing with WCF.

You would do this the exact same way you would load-balance a web site.

However you load balance your web sites, do the same with WCF.
 
Back
Top