I have an ASP.NET website that accesses a web service. Everything works fine through http, but when I try https: // it cannot connect. I don't seem to see any errors on the website, and the webservice logs show nothing, which means that nothing is connected to it.
I can connect to my https: // webservice from a site like soapclient.com and request information, so web services and ports work.
Is there anything special I have to do to connect to https: // webservice through a regular http: // one in .NET? All I am doing at the moment is changing the URL to which it connects to my secure one.
I am using ASP.NET 2, IIS7
Thanks in advance.
EDIT: just found the actual error message: the underlying connection was closed: could not establish trust for the secure SSL / TLS channel. Which in my eyes tells me that I did not add my self-signed certificate to the installed certificates on the server ... but I have ...
source
share