Kanishka Dilshan
Kanishka Dilshan

Reputation: 734

Load balancing for WCF Component

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

Answers (1)

Sajeetharan
Sajeetharan

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.

Load balance

Upvotes: 1

Related Questions