Re: FTP resume does not work in my app (General questions)
Max,
Can you please try some other client?
Does it work with it?
Can you verify that the Resume Property is set to true before you attempt a PutFile?
Regards,
Damba
Hi, I've tried with filezilla, select resume and it works. The ftp command that filezilla sent are:
TYPE I
Response: 200 Switching to Binary mode.
Command: PASV
Response: 227 Entering Passive Mode (80,86,145,128,34,13)
Command: APPE test.zip
Response: 150 Ok to send data.
Response: 226 File receive OK.
The resume property is correctly set to true. These are my ftp settings:
_ftp = Nothing
_ftp = New wodFtpDLXComLib.wodFtpDLXCom
_ftp.LicenseKey = MYCODE
_ftp.Authentication = odFtpDLXComLib.AuthenticationsEnum.authPassword
_ftp.Timeout = 60
_ftp.Compression = 0
_ftp.Blocking = True
_ftp.Protocol = wodFtpDLXComLib.ProtocolsEnum.FTP
_ftp.Hostname = _hostname
_ftp.Login = _login
_ftp.Password = _password
_ftp.Resume = True
_ftp.Passive = False
_ftp.Port = _port
...
_ftp.connect()
...
_ftp.putfile(...)
Complete thread:
- FTP resume does not work in my app - Max, 2007-03-20, 12:09
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 12:34
- Re: FTP resume does not work in my app - Max, 2007-03-20, 12:49
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 13:12
- Re: FTP resume does not work in my app - Max, 2007-03-20, 15:36
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 16:02
- Re: FTP resume does not work in my app - Max, 2007-03-20, 16:53
- Re: FTP resume does not work in my app - woddrazen, 2007-03-20, 16:56
- Re: FTP resume does not work in my app - Max, 2007-03-20, 16:53
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 16:02
- Re: FTP resume does not work in my app - Max, 2007-03-20, 15:36
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 13:12
- Re: FTP resume does not work in my app - Max, 2007-03-20, 12:49
- Re: FTP resume does not work in my app - wodDamir, 2007-03-20, 12:34