FanDjango
FanDjango
@codengine >All suggested fixes above also didn't work. You are saying: if you switch to use .NET Framework 4.8, **it also does not work?**
@codengine Using your exact same code agains a filezilla server I get success in both cases: ``` # Connect() Status: FluentFTP 42.0.0.0 Status: Connecting to ***:21 Status: Waiting for a...
This log, thanks! It is NET 6 I can see. Let me check a few things. Mine looks like this for NET 6: ``` # OpenPassiveDataStream(AutoPassive, "MLSD /", 0) Command:...
Good question, but it **is** trying to TLS the data channel: The message `SSL Buffering force disabled....` stems from the `ActivateEncryption...` process.
It is failing somehow inside `FluentFTP.FtpSocketStream.ActivateEncryption(...`. Which is more or less directly going to MS .NET code. I could put some diagnostic code in there to find out more. Must...
Good. Will take some hours, so by tomorrow
@noxe Hoping to make some progress here, it is the same problem
I find it interesting that your server enforces encryption on **connect** like this: `Status: FTPS authentication successful, protocol = Tls`. Mine connects and then works as: `Status: FTPS authentication successful,...
@noxe can you also try the **exact** same code as @codengine listed some posts further up, just like I did too?
@noxe Tls12, aha. Very good. ``` var client = new FtpClient("127.0.0.1", "blausere", "blapass"); client.ValidateCertificate += (_, e) => { e.Accept = true; }; var ftpProfile = new FtpProfile() { Host...