Hi,
i try to connect to our non-public FTP-Server with SSL.
First question: is it possible to add a self-signed certificate to the certificate-list by my own app?
Second:
Because the certificate is self-signed, i get the exception:
(CertPathValidatorException) java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
After a research i found
this entry.
How can create the trust manager for the cerificate? With reflection?
Dim r As Reflector
Dim tm As Object
tm = r.CreateObject("javax.net.ssl.TrustManager")
An then?
Thanks.