Re: Event Based Operations Problem (General questions)
Anyz,
you're using SFTP and wodFTPServer on the server-side?
In that case, use this code
once only:
[code]Dim c as new wodCertificate
c.GenerateKey RSAKey
c.SaveKey c:\somewhere [/code]
and then later on
[code]Dim c as new wodCertificate
c.LoadKey c:\somewhere
Dim ftp as new wodFtpDLXCom
set ftp.Certificate = c
ftp.Authentication = authCertificate
ftp.Login = something
ftp.Connect[/code]
on wodFTPServer's side, in LoginCertificate event, set Action=Allow. This will blindly accept all certificates (BAD IDEA!) but good enough for your tests. You may need to set wodFTPServer's Authentication property to authCertificate too - so it's aware you will use your public key for authentication.
Can you try that?
Complete thread:
- Event Based Operations Problem - Anyz, 2004-08-31, 08:45
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 10:44
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 12:16
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 13:44
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 14:16
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 14:28
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 14:51
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 15:09
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 15:28
- Certificate/Keys Understandings/Findings - Anyz, 2004-09-01, 10:33
- Re: Event Based Operations Problem - wodSupport, 2004-09-01, 11:48
- Updating to Licence Version - Anyz, 2004-09-02, 08:23
- Re: Event Based Operations Problem - wodSupport, 2004-09-02, 09:02
- Updating to Licence Version - Anyz, 2004-09-02, 08:23
- Re: Event Based Operations Problem - wodSupport, 2004-09-01, 11:48
- Certificate/Keys Understandings/Findings - Anyz, 2004-09-01, 10:33
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 15:28
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 15:09
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 14:51
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 14:28
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 14:16
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 13:44
- Re: Event Based Operations Problem - Anyz, 2004-08-31, 12:16
- Re: Event Based Operations Problem - wodSupport, 2004-08-31, 10:44