Hello, I'm trying to upload file to SFTP server.   I have access to SFTP server .  My code is bellow  Try {
Set sftp = ##class(%Net.SSH.Session).%New()</p>

Set sc = sftp.AuthenticateWithUsername(username,password)
if 'sftp.Connect(host){
            Set status = $$$ERROR($$$GeneralError,"Cannot connect to sftp  ")
            Quit       
}

Set sc = sftp.OpenSFTP(.t)

If 'sftp.Disconnect() Write "Failed to logout",!</p>

} Catch ex {
Set status=$$$ERROR($$$GeneralError,$ZE)
Quit
}</p>

The output : $lb(5001,"Cannot connect to sftp "

What i'm doing wrong ?

</body></html>