I need to do SFTP from within a Sql Server Context. I can do FTP with MS libraries, but they do not support SFTP.
So I downloaded Rebex, and put together a sample project, and tried to install in Sql Server as a CLR stored procedure.
When doing this, Sql Server gives the following message:
Msg 6218, Level 16, State 2, Line 3
CREATE ASSEMBLY for assembly 'RebexTest' failed because assembly 'Rebex.Common' failed verification. Check if the referenced assemblies are up-to-date and trusted (for external_access or unsafe) to execute in the database. CLR Verifier error messages if any will follow this message
[ : Rebex.Security.Certificates.CertificateStore::Exists][mdToken=0x60003b0][offset 0x000000C7] Method is not visible.
Is there a way to fix this so I can install in Sql Server?
Greg