Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
using (Ftp client = new Ftp())
            {
                client.ServerCertificateValidate += ValidateCertificate;
                client.ConnectSSL(Host);
                client.Login(Username, Password); 
                client.Upload(filename, LocalDestinationFilename);
              }


What I have tried:

Pre-running code. But now he's making a mistake. The error is "TLS does not match the control connection I am developing with c #. In Filezilla application, the same process works without problems. error during upload. What should I do?
Posted
Updated 8-Dec-19 19:03pm
v2
Comments
Richard Deeming 5-Dec-19 8:40am    
Ftp is not a built-in class. Which third-party library are you using?
byQuince 5-Dec-19 12:07pm    
i using the "Limilabs.FTP.Client" library
byQuince 5-Dec-19 12:17pm    
I am not having errors with the FileZilla server. I'm just getting an error in c #. When I run C # on another computer, it still works properly. The application is updating to ftp on computer A. But B is giving error on computer
ZurdoDev 5-Dec-19 14:55pm    
The error is not specific to FileZilla. You'll need to research the various causes that create that error, like the one in the link.

1 solution

I am not having errors with the FileZilla server. I'm just getting an error in c #. When I run C # on another computer, it still works properly. The application is updating to ftp on computer A. But B is giving error on computer
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900