Hello,
I'm trying to use the Rebex FTP/SSL library.
I'm connected successfully to a Java server.
But i can't do anything with the client (Upload / Download / Rename / Delete).
When i'm trying i have this error message :
Rebex.Net.FtpException: Timeout exceeded.
at Rebex.Net.Ftp.TL () [0x000a4] in <6ec8d5f3f62a4b8bb1098f4ae2b7edbe>:0
at Rebex.Net.Ftp.RL (System.Int32 Z, System.Boolean T) [0x000ea] in <6ec8d5f3f62a4b8bb1098f4ae2b7edbe>:0
Here is the code :
try
{
client.Rename("/Hello.txt", "/file.txt");
}
catch (Exception e)
{
Debug.WriteLine("FTPDebug : err " + e.ToString());
}
I've seen this post on the forum : http://forum.rebex.net/3857/smtp-timeout-exception-when-trying-to-send?show=3857#q3857
The solution was to disable the Chunking and Pipelining extensions.
But it was for VB and i'm programming with Xamarin.
Chuking and Pipelining are only for SMTP ?
How can i disable them ?
Btw i'm using Visual Studio 2015 community and Xamarin 4.4.0.34
Thanks for reading me !