Re: Help Regarding FTPS (General questions)
Hi Ray,
Yes of course, we will be glad to help you.
First of all you should change protocol to FTP over SSL using wodFtpDLX Protocol Property.
I'm not sure which type exactly of FTP over SSL protocol you need but you can check this out by changing Protocol Property value to: FTPSnodata, FTPSwithdata or FTPSimplicit. That will help you to determine which protocol you need to use.
More help about Protocol Property you can find here:
http://www.weonlydo.com/FtpDLX/Help/wodFtpDLXLib~wodFtpDLX~Protocol.html
Passive mode (PASV) you can enable by setting wodFtpDLX Passive Property to True.
More help for Passive Property you can find here:
http://www.weonlydo.com/FtpDLX/Help/wodFtpDLXLib~wodFtpDLX~Passive.html
Here is some basic example
[code]Set dlx1 = New wodFtpDLXCom
dlx1.Protocol = FTPSwithdata
dlx1.HostName = your.hostname
dlx1.Blocking = True
dlx1.Login = your.login
dlx1.Password = your.password
dlx1.Passive = True
dlx1.Connect[/code]
You can find samples that comes with wodFtpDLX in component Samples folder. Maybe they can also help you here.
Let us know how it goes.
Regards,
Drazen
Complete thread:
- Help Regarding FTPS - Raj, 2008-09-15, 17:41
- Re: Help Regarding FTPS - woddrazen, 2008-09-15, 18:06
- Re: Help Regarding FTPS - Raj, 2008-09-15, 20:03
- Re: Help Regarding FTPS - woddrazen, 2008-09-15, 20:15
- Re: Help Regarding FTPS - Raj, 2008-09-15, 20:03
- Re: Help Regarding FTPS - woddrazen, 2008-09-15, 18:06