Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF with SSL terminating load balance server

we have 2 load balanced IIS servers which we want to host a WCF on. the entry URL is https but this is terminated at the load balanced server and changed to http before it gets to the IIS servers.

We are using .net 4, is there a built in configuration to handle this scenario?

like image 595
Carl Avatar asked Oct 25 '22 15:10

Carl


1 Answers

SSL requires point-to-point connection. If you need a load balancer you probably need to use Message Security. The link I have provided discusses your options.

like image 72
Aliostad Avatar answered Oct 31 '22 16:10

Aliostad