Ok. I found something that might solve my problem. But my new problem is that I don't know how to use it with my AxWebBrowser control. Any ideas?
VB Code:
Imports System.Net
Imports System.Security.Cryptography.X509Certificates
VB Code:
ServicePointManager.CertificatePolicy = New AcceptAllCertificatePolicy()
VB Code:
Public Class AcceptAllCertificatePolicy
Implements ICertificatePolicy
Public Overridable Function CheckValidationResult(ByVal srvPoint As ServicePoint, ByVal certificate As X509Certificate, ByVal request As WebRequest, ByVal problem As Integer) As Boolean Implements ICertificatePolicy.CheckValidationResult
Return True 'this accepts all certificates
End Function
End Class