Chandra
Chandra

Reputation: 11

Configure WCF binding behind a F5 load balancer

I am trying to set up a WCF service on IIS behind a F5 load balancer. The F5 handles the SSL and the WCF service is on HTTP. This seems to be fairly standard scenario for deployment but googling does not help much. Thanks in advance if someone could answer this.

Upvotes: 1

Views: 918

Answers (2)

Rajesh
Rajesh

Reputation: 7886

You can get to configure SSL on F5 load balancer by going through this link.

Additionally if you have your WCF service that has basicHttpBinding with userName/Password Validation and you want the SSL to be offloaded at the load balancer you can use ClearUserNameBinding to pass username/password over Http as said by Yaron.

Upvotes: 0

Yaron Naveh
Yaron Naveh

Reputation: 24436

You can use clearusernamebinding

Upvotes: 1

Related Questions