I'm having a problem using a WCF call from a Web application to my WCF service running on same server. This call works fine for some time, but then stopped working all of a sudden, and has not worked since.
I have web application hosted at https://www.example.com/CallWebService/Default.aspx
above url is making call to WCF service at https://www.example.com/sampleservice/service.asmx.
both are hosted on same server different directory.
It was working correctly, without any change in application code,and without any server side change, suddenly it is giving error message :
"An error occurred while making the HTTP request to https://www.example.com/sampleservice/service.asmx. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also be caused by a mismatch of the security binding between the client and the server."
Tried with traceviewer showing following error :
"System.ServiceModel.CommunicationException: An error occurred while making the HTTP request to https://www.example.com/sampleservice/service.asmx. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also be caused by a mismatch of the security binding between the client and the server. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host"
Can any one suggest anything on this ?,i have been stuck into this since 3 days.... found no working solution