I'm trying to migrate my C# web application to a production instance that runs on windows server 2012 R2. When I try to browse the application via IIS I receive this strange error "The client and server cannot communicate, because they do not possess a common algorithm" and I'm not entirely sure what it means.
I read some other questions online similar to mine and they stated the problem stems from incompatibility issues with SSL/TLS. I believe my new server uses TLS 1.2 after checking in regedit and locating what I assume is my TLS certificates. My application encounters this error whenever it tries to connect to a DB that runs on a SQL Server 2008 DB system located on a different instance. Where my website is currently hosted, it's not having any issues (it's running on a Windows Server 2008 R2 instance).
My question is, do you know where I can locate what security certificates my App on the production server and my SQL Server DB instance, and do they have to be similar to solve this "The client and server cannot communicate, because they do not possess a common algorithm" error. Any help will be greatly appreciated.