Posts

Showing posts from January, 2014

SSIS SFTP handling using WinSCP

Just a follow on to the earlier post..... try { string file = Dts.Variables["strLocalDirectory"].Value.ToString() + "\\" + Dts.Variables["strLocalFile"].Value.ToString(); string username = Dts.Variables["strFTPUserName"].Value.ToString(); string password = Dts.Variables["strFTPPassword"].Value.ToString(); // Setup session options SessionOptions sessionOptions = new SessionOptions { HostName = Dts.Variables["strFTPHost"].Value.ToString(), UserName = username, Password = password, Protocol = Protocol.Sftp, PortNumber = int.Parse(Dts.Variables["strFTPPort"].Value.ToString()), FtpMode = FtpMode.Active, FtpSecure = FtpSecure.None, SshHostKeyFin

SSIS FTPS File handling

The following scripttask showcases both the FTP and FTPS based connections for uploading a file (it can be modified to perform more options). My earlier approach was to leverage the FTPWebRequest but the "AUTH SSL" command was taking a huge amount of time so decided to fall back on using WinSCP instead. Also ensure that the WinSCP.exe is added to the path environment variable and the WinSCP.dll is placed in the GAC. public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase { public void Main() { /* * Traditional FTP */ /*ConnectionManager mgr = Dts.Connections.Add("FTP"); try { mgr.Properties["ServerName"].SetValue(mgr, "ftp://"+Dts.Variables["strFTPHost"].Value.ToString()); mgr.Properties["ServerUserName"].SetValue(mgr, Dts.Variables["strFTPUserName"].Value.ToString());