SQL Server
SQL Server
Continue SSH Keyboard-Interactive Authentication
See more SSH Examples
Demonstrates the Chilkat Ssh.ContinueKeyboardAuth method, which submits a response to a keyboard-interactive prompt. The only argument is the response text; for a request containing multiple prompts, an XML response is supplied instead. It returns XML indicating the next prompt or the final result.
Background: This is the second half of the keyboard-interactive exchange started by
StartKeyboardAuth. A server may issue several rounds of prompts, so a robust client loops: submit answers, read the returned XML, and continue until authentication succeeds or fails. Prompt responses are typically secrets, so obtain them from interactive input rather than embedding them in code.Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- Demonstrates the Ssh.ContinueKeyboardAuth method, which submits a response to a
-- keyboard-interactive prompt. The only argument is the response. For multiple prompts, an
-- XML response is supplied instead.
DECLARE @ssh int
EXEC @hr = sp_OACreate 'Chilkat.Ssh', @ssh OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Connect to the SSH server. Port 22 is the usual SSH port.
DECLARE @sshPort int
SELECT @sshPort = 22
EXEC sp_OAMethod @ssh, 'Connect', @success OUT, 'ssh.example.com', @sshPort
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @ssh, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @ssh
RETURN
END
-- Begin keyboard-interactive authentication to receive the server's prompt(s).
DECLARE @infoRequestXml nvarchar(4000)
EXEC sp_OAMethod @ssh, 'StartKeyboardAuth', @infoRequestXml OUT, 'mySshLogin'
EXEC sp_OAGetProperty @ssh, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @ssh, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @ssh
RETURN
END
-- Normally you would not hard-code the response (typically the password) in source. You
-- should instead obtain it from an interactive prompt.
DECLARE @response nvarchar(4000)
SELECT @response = 'mySshPassword'
-- Submit the response. The returned XML indicates the next prompt or the final result.
DECLARE @result nvarchar(4000)
EXEC sp_OAMethod @ssh, 'ContinueKeyboardAuth', @result OUT, @response
EXEC sp_OAGetProperty @ssh, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @ssh, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @ssh
RETURN
END
PRINT @result
EXEC sp_OAMethod @ssh, 'Disconnect', NULL
EXEC @hr = sp_OADestroy @ssh
END
GO