Created
August 6, 2017 14:59
-
-
Save vgerbase/5eb4024edb151b9e9848b80a6ff8e463 to your computer and use it in GitHub Desktop.
Web.config settings to switch off certificate validation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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