My client application is trying to call a wcf service using transport security. The wcf service is sitting on 2 nodes behind a hardware load balancer.
The hardware load balancer gets the wcf call on port 443, and then changes the port to 44556. This gives a endpoint mismatch error. The guys that look after our production and qa departments here, don't want the wcf service sitting on port 443 for whatever reason, and thus why they setup the port change.
I then changed the load balancer to not change the port to 44556, but to leave it as port 443, and the service gets called as expected.
My question is, is there any configuration I can make to my service\IIS, that will let the service accept the wcf call on port 44566 when it came in from port 443?
Thanks,