1

I have created two wcf application and its working fine in my local iis. Now i hosted that application in production server. I got the error message. Can any one help me to solve this.

Could not establish trust relationship for the SSL/TLS secure channel with authority 'win-cmahasuzlr7:444'.

user3710059
  • 25
  • 2
  • 11
  • try posting some of your code of web config related to bindings. – sudhansu63 Jun 19 '14 at 09:09
  • possible duplicate of [Could not establish trust relationship for SSL/TLS secure channel -- SOAP](http://stackoverflow.com/questions/703272/could-not-establish-trust-relationship-for-ssl-tls-secure-channel-soap) – jww Aug 15 '14 at 20:52

1 Answers1

0

I think you have to Enable SSL for your Production server IIS. Here are the steps:

  1. IIS -> Sites -> Default WebSite -> Right Click -> Edit Bindings
  2. Check if https is alredy there or not.
  3. if Https binding is not there, then add One binding for HTTPs
  4. Use type = 'HTTPS', PORT : 443, SSL : Choose SSL Certificate.
sudhansu63
  • 6,025
  • 4
  • 39
  • 52