Hi,
I managed to connect and do everything I wanted with my FTP server using FTPS (SSLFTPClient) and server validation (ftp.getRootCertificateStore().importPEMFile(serverCertFilename);).
Then for performance reasons I decided to use the facilities of FTP connection pool (SecureFileTransferClient) but I am unable to:
1. set server certificate
2. set custom validator (here i want to provide a CN different from the one in the certificate)
3. set connection mode (here i want PASV)
4. set transfer type (here i want ASCII)
I searched the various documentation without success.
Thanks in advance for your help.
Sylvain