I receive the error base: {"Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host."}
the FTP SERVER: 220 FileZilla Server version 0.9.43 beta
using (var ftp = new Ftp())
{
ftp.Connect(ip);
ftp.Login(user, pass);
ftp.CreateFolder(ClientID);
ftp.ChangeFolder(ClientID);
ftp.Upload("teste.txt", barq);
ftp.Close();
}
The create folder is OK.
the error occours on upload file.
With Windows IIS ftp works normaly.
Att.
Helio Elias