Still, "it fails" is too value. You must get some error message or some error code at least. I do not believe that all information that you have is "it fails".
- martin
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
public void Main()
{
try
{
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Sftp,
HostName = "host.site.com",
UserName = "user",
SshHostKeyFingerprint = "ssh-rsa 2048 fingerprint"
PrivateKeyPassphrase = "password",
SshPrivateKeyPassphrase = @"C:\Path\To\Key"
};
}
catch (Exception e)
{
Dts.Events.FireError(-1, "Session setup", e.Message, String.Empty, 0);
}
}
Session.SessionLogPath
. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.