I've been doing some FTP coding using the standard Net library with much success. One issue I've come across is the support for FTPS (FTP over TLS) is missing one feature. I've been testing my code against a FileZilla FTP server. The following startup code works fine as long as the server setting for "Require TLS session resumption on data connection when using PROT P" is disabled as shown in the attached screenshot. Would it be possible to update the Net library to accommodate such a feature?
B4X:
If FirstTime Then
FTP.Initialize("FTP", "xxxxx", 21, "xxxxx", "xxxxx")
FTP.PassiveMode=True
FTP.UseSSLExplicit = True
ssltrustmanager.InitializeAcceptAll
FTP.SetCustomSSLTrustManager(ssltrustmanager)
End If