You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code is working fine when using SecurityType.FTP. But when switching over to SecurityType.FTPES the applications gets stuck at Start downloading...
There is an error in the log which states that the size is not allowed in ascii mode:
[code= 550, message= 550 SIZE not allowed in ASCII mode]
After that it will be switched to TYPE A and the size is returned.
But on opening the DataSocket the code seems to try again in ASCII which might be part of the failure?
I tried to switch to TYPE A, but it had no effect.:
await ftpConnect.sendCustomCommand("TYPE A");
WinSCP is opening binary mode for the data connection which is working.
I tried setting the transfer type manully to await ftpConnect.setTransferType(TransferType.binary);
But it gets stuck on the same position. So it might has to do with the SSL handshake?
@salim-lachdhaf, thank you for your effort implementing this plugin! Do you have a clue why this fails? Is there a way to force binary download instead of ASCII Mode? Thank you!
Log from WinSCP using FTPES successfull:
>2023-08-2511:14:39.912RETR xxxxxx.txt
. 2023-08-2511:14:39.912Verbindung mit 13.37.150.67:50069 wird hergestellt …
<2023-08-2511:14:39.991150OpeningBINARY mode data connection for xxxxxx.txt (2091 bytes)
. 2023-08-2511:14:40.032SessionID reused
. 2023-08-2511:14:40.032UsingTLSv1.2, cipher TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256, 2048 bit RSA, ECDHE-RSA-AES128-GCM-SHA256TLSv1.2Kx=ECDHAu=RSAEnc=AESGCM(128) Mac=AEAD
. 2023-08-2511:14:40.032TLS-Verbindung hergestellt
. 2023-08-2511:14:40.112Preserving timestamp [2023-08-25T08:21:37.000Z]
<2023-08-2511:14:40.114226Transfer complete
. 2023-08-2511:14:40.114Herunterladen erfolgreich
. 2023-08-2511:14:40.114Transfer done:'/results/xxxxxx.txt'=>'C:\Users\thoma\Documents\test\xxxxxx.txt.txt' [2091]
The same happens to me. When I connect the server in FTPES type, it connects fine but it does not upload the file. it stops and generates the error "Timeout reached for Receiving response !". If I connect the server in FTP type, works perfectly. Can someone help? Thank you!!! With the version 1.0.1 works right. But it's obsolet with intl 1.18.1
Code is working fine when using SecurityType.FTP. But when switching over to SecurityType.FTPES the applications gets stuck at Start downloading...
There is an error in the log which states that the size is not allowed in ascii mode:
[code= 550, message= 550 SIZE not allowed in ASCII mode]
After that it will be switched to TYPE A and the size is returned.
But on opening the DataSocket the code seems to try again in ASCII which might be part of the failure?
I tried to switch to TYPE A, but it had no effect.:
await ftpConnect.sendCustomCommand("TYPE A");
WinSCP is opening binary mode for the data connection which is working.
I tried setting the transfer type manully to await ftpConnect.setTransferType(TransferType.binary);
But it gets stuck on the same position. So it might has to do with the SSL handshake?
@salim-lachdhaf, thank you for your effort implementing this plugin! Do you have a clue why this fails? Is there a way to force binary download instead of ASCII Mode? Thank you!
Log from WinSCP using FTPES successfull:
Log from flutter:
The text was updated successfully, but these errors were encountered: