Question : SSIS Ftp Connection Manager

Hello All,

I'm working on a SSIS Package. I would like an example for FTP ConnectionString to create FTP Connection at Run-Time.
I have a private variable in my class:

Private ConMgr As ConnectionManager.
Public Sub Main()

ConMgr = Dts.Connections.Add("FTP")
ConMgr.ConnectionString =
End Sub

I want to know the conection string for a FTP connection where I can specify server name, userid and password.

Please help.

Thanks.

Answer : SSIS Ftp Connection Manager

well, adding uid=username;pwd=password; to the conneciton string;
ConMgr.ConnectionString = @"servername_or_ip:port;uid=username;pwd=password;";

or, please try the internet style:
ConMgr.ConnectionString = @"username:password@servername_or_ip:port";
Random Solutions  
 
programming4us programming4us