Hi
Yes, you can load the CA certificate, rather than the server certificate, as the root certificate. The latest version of edtFTPj/PRO should throw an SSLFTPCertificateException when it fails to validate a server certificate. This exception has methods for printing the certificates that the server presented (both the CA certificate and the server certificate). They should each look something like this:
-----BEGIN CERTIFICATE-----
MIID5jCCA0+gAwIBAgICAR8wDQYJKoZIhvcNAQEFBQAwgaQxCzAJBgNVBAYTAkFV
Sw4bDHjt9TR6Ye2kew5QuCzqqMuI4tLBjjPSHd5x6lG4fr38e9btsBtLvWeNgOI/
...
FbzwTC16lb60KEUnotHnd/HdjSyFh2jHnHxm9dDCZLxGRjqYs4nCB51g
-----END CERTIFICATE-----
To inspect this certificate, copy it into a file and use an application such as OpenSSL to decode its contents. If you're using OpenSSL, use the following command:
> openssl x509 -text < mycert.pem
This will often give you clues about why the certificate isn't being validated. For example, a couple of weeks ago another user found that the server administrator had sent him an old 512-bit certificate , and that the server was now using a newer 2048-bit certificate.
Finally, as a trial user you are entitled to e-mail based support, so you may contact support by e-mail if you require further assistance. There has literally never been a support issue that have not been able to solve, so I am confident we can get you up and running too.
- Hans (EDT)