From: Cdudej on
I have been trying to use the Tamir dll to send data from my windows 7
laptop to a linux server.
I need to use a public key

JSch jsch = new JSch();
jsch.addIdentity(@"C:\apps\putty\linux.ppk" );

Session session = jsch.getSession("rt", "196.222.222.222",
222);

UserInfo ui = new
Tamir.SharpSsh.jsch.examples.AES.MyUserInfo();

session.setUserInfo(ui);
Console.Write("-Connecting...");

session.connect();
This connects me but as soon as i try and transfer the it gives me the
error PIPE IS CLOSED.
Any help will be appreciated.