Keyboard Interactive Authentication?
Posted: Fri 11 Sep 2009 17:10
How do I implement Keyboard Interactive authentication?
I see there is a option for it now.
Thanks,
Snorkel
I see there is a option for it now.
Thanks,
Snorkel
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Hi,Dimon wrote:You should set the TSSHClient.Autentification property to atKeyboardInteractive and process the TScSSHClient.AuthenticationPrompt event.
You can look at the example of using this autentification method in the SSHClient demo of SecureBridge.
Code: Select all
if Length(Responses) > 0 then
Responses[0]:='mypassword';
Thanks,Dimon wrote:To solve the problem, try to use the following code:Code: Select all
if Length(Responses) > 0 then Responses[0]:='mypassword';