Reputation: 734
Is there any way to balance load for WCF component. What I want to do is host same WCF service on 2 machines and add introduce a load balancer. can I do this programatically?
Upvotes: 0
Views: 121
Reputation: 222722
When it comes to load balancing, in WCF, Depending on the binding that you are using you need to change the default binding settings. Microsoft has more details in their article on WCF Load Balancing where they discuss settings for NetTcpBinding, WSHttpBinding, WSDualHttpBinding, and BasicHttpBinding.
Upvotes: 1