Sorry for the delay, but I solved the problem with the following script (see below). For some bizarre reason (I donβt know why), something added two entries to my registry, and after fixing them, the problem disappeared. I realized this by comparing my registry with another machine that did not have this problem, and found the culprit.
Remove-ItemProperty -Path "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters\SslBindingInfo\" -Name "[::1]:26143" -ErrorAction SilentlyContinue Remove-ItemProperty -Path "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters\SslBindingInfo" -Name "127.0.0.1:26143" -ErrorAction SilentlyContinue echo "Done."
@Bewc I believe that you are on something there, although I think that this affects not only WCF services. We have a powershell script that builds and deploys a website on a machine (it sounds crazy that I know). Who or what creates these records, I have no idea, but maybe some background process in IIS?
Dr schizo
source share