Pages

Subscribe:
Showing posts with label Configuring SSL for SharePoint 2013. Show all posts
Showing posts with label Configuring SSL for SharePoint 2013. Show all posts

Saturday, June 29, 2013

SharePoint 2013: SSL policy errors have been encountered. Error code '0x2'

After configuring SSL for SharePoint 2013, you may get the blank screen when you open the site in the browser. 

After Investigating and checking the Logs in Event viewer, got the error for the SSL


Errors:  SSL policy errors have been encountered.  Error code '0x2'..

RESOLUTION
Go to your SharePoint site web.config and add the following line within <system.net> tag:
<settings>
<servicePointManager
checkCertificateName=”false”
checkCertificateRevocationList=”false”
/>
</settings>

That fixed for me... !!!