Re: wodftpdlx.net timeout occurred due to inactivi (General questions)
My sample code:
protected void Page_Load(object sender, EventArgs e)
{
FtpDLX ftp = new FtpDLX();
ftp.Authentication = Authentications.Password;
ftp.Blocking = true;
ftp.Encryption = EncryptionMethods.Auto;
ftp.Hostname = 127.0.0.1
ftp.Login = myUserName ;
ftp.Passive = true;
ftp.Password = myPassword ;
ftp.Protocol = Protocols.FTPS;
ftp.Timeout = 10;
ftp.TransferMode = TransferModes.Binary;
ftp.StateChangedEvent += new FtpDLX.StateChangedDelegate(ftp_StateChangedEvent);
ftp.Connect();
Response.Write( success );
}
void ftp_StateChangedEvent( object Sender, FtpStateChangedArgs Args)
{
}
Complete thread:
- wodftpdlx.net timeout occurred due to inactivity - Ryan Garaygay, 2008-05-20, 17:35
- Re: wodftpdlx.net timeout occurred due to inactivi - Ryan Garaygay, 2008-05-20, 17:39
- Re: wodftpdlx.net timeout occurred due to inactivi - wodDamir, 2008-05-20, 17:59
- Re: wodftpdlx.net timeout occurred due to inactivi - Ryan Garaygay, 2008-05-20, 18:15
- Re: wodftpdlx.net timeout occurred due to inactivi - wodDamir, 2008-05-20, 17:59
- Re: wodftpdlx.net timeout occurred due to inactivi - Ryan Garaygay, 2008-05-20, 17:39