Andrew Florko
Andrew Florko

Reputation: 7750

Is IIS balancing reliable for WCF servers?

I have to create WCF servers farm (several workstations in Intranet environment that host WCF servers) and wonder how to implement load balancing.

Requirements are:

Questions are:

Thank you in advance

Upvotes: 0

Views: 166

Answers (1)

Richard Blewett
Richard Blewett

Reputation: 6109

NLB will be fine, however, if you use a session based binding (wsHttpBinding or netTcpBinding_ then you have to enable sticky sessions

If you want full free load balancing then HTTP is the way to go and make sure you don;t have sessions. For lowest overhead use HTTP with the binary encoder (this requires a custom binding although it has been packaged by a number of people - search for NetHttpBinding)

Upvotes: 1

Related Questions