Reputation: 11
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
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