Hi there,
I am having wcf service, which runs well when I run the application through visual studio. But it does not run when I try it through IIS. I am having IIS7.
Here is a error --
Could not connect to https://<serivce address> TCP error code 10060: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
184.73.202.107:443.
Here is the config for it --
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IThorService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false"
bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="1572864" maxBufferPoolSize="524288"
maxReceivedMessageSize="1572864" messageEncoding="T
View Complete Post