Re: FTP/SSL (AUTH SSL) (General questions)
Abe,
here's one typical example. It connects to the server using login and personal certificate (no password needed):
[code] Dim c As New Certificate
c.LoadKey App.Path & \server.pfx , weonlydo
c.Load App.Path & \server.pfx , weonlydo
Set Ftp1.Certificate = c
Ftp1.Authentication = authCertificate
Ftp1.Login = joe
Ftp1.Protocol = FTPSwithdata
Ftp1.HostName = localhost
Ftp1.Connect[/code]
But please check with server admin - if he didn't explicitly say you need private certificate, you probably don't need all of this.
Complete thread:
- FTP/SSL (AUTH SSL) - abe_dk, 2004-11-08, 16:03
- Re: FTP/SSL (AUTH SSL) - wodSupport, 2004-11-08, 16:05
- Re: FTP/SSL (AUTH SSL) - abe_dk, 2004-12-07, 14:52
- Re: FTP/SSL (AUTH SSL) - wodSupport, 2004-12-07, 15:13
- Re: FTP/SSL (AUTH SSL) - abe_dk, 2004-12-07, 15:25
- Re: FTP/SSL (AUTH SSL) - wodSupport, 2004-12-07, 21:19
- Re: FTP/SSL (AUTH SSL) - abe_dk, 2004-12-07, 15:25
- Re: FTP/SSL (AUTH SSL) - wodSupport, 2004-12-07, 15:13
- Re: FTP/SSL (AUTH SSL) - abe_dk, 2004-12-07, 14:52
- Re: FTP/SSL (AUTH SSL) - wodSupport, 2004-11-08, 16:05