Hi everyone, I'm trying to create a simple app that connects to a FileZilla FTP server using explicit TLS. Every time I try to interact with the data, I encounter the following error:
"425 Unable to build data connection: TLS session of data connection not resumed."
After doing some research, I found that the issue might be related to Apache Commons Net, which apparently creates a new connection for each command. However, FileZilla requires the reuse of the TLS session.
To resolve this, it seems we need to override the behavior of Commons Net, as done in the CyberDuck project.
Has anyone faced a similar issue or knows how to address it? Any help would be greatly appreciated!