Re: Help Regarding FTPS - WeOnlyDo Discussion board

Re: Help Regarding FTPS (General questions)

by woddrazen, Monday, September 15, 2008, 18:06 (5702 days ago) @ Raj

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: