You must Sign In to post a response.
  • Category: Windows 10

    Google Captcha not working when TLS 1.2 Enabled

    Hi guys i need urgent help please,
    I have used Google captcha (I'm not robot ) on Login page it was working fine but recently network administrator enabled TLS 1.2 after that my Re-captcha stopped , i dont know why but whenever i enable tls 1.0 its starts working but with tls 1.2 its not working/responding i have also attached IIS Crypto setting image pls have a look I'm waiting for your response.
  • #769925

    Delete Attachment

  • #769940
    i think you have built your project on .net framework < 4.5.2. so, above 4.5.2 framework by default supports TLS1.2 and lower version will not support.

    to do this, you need to build your project with above 4.5.1 framework or need to add below statement to over come TLS1.2 issue

    System.Net.ServicePointManager.SecurityProtocol = Net.SecurityProtocolType.Tls12;

    Hope this will help you to resolve your issue.

    Thanks!
    B.Ramana Reddy


  • Sign In to post your comments