Skip to content

Instantly share code, notes, and snippets.

@vgerbase
Created August 6, 2017 14:59
Show Gist options
  • Save vgerbase/5eb4024edb151b9e9848b80a6ff8e463 to your computer and use it in GitHub Desktop.
Save vgerbase/5eb4024edb151b9e9848b80a6ff8e463 to your computer and use it in GitHub Desktop.
Web.config settings to switch off certificate validation
<configuration>
<system.net>
<settings>
<servicePointManager
checkCertificateName="false"
checkCertificateRevocationList="false" />
</settings>
</system.net>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment