Hey guys,
I’m trying to use implicit FTPS.
In the documentation, there is written
Use it to configure any custom parameters the server may require, such as explicit or implicit data transfer encryption.
FTP • Alpakka Documentation
The FTPSClient
has a isImpicit
flag internally but it’s final.
In the example, I can only modify an already created FTPSClient.
FtpsSettings.create(InetAddress.getByName(HOSTNAME))
.withPort(PORT)
.withCredentials(CREDENTIALS)
.withBinary(true)
.withPassiveMode(true)
.withConfigureConnectionConsumer(
(FTPSClient ftpClient) -> {
// ftpClient.setImplicit(true) not possible because its final
});
How I can configure implicit FTPS?
Best
Sigurd