Using the JSch library for an SFTP connection, how do you establish a session before authenticating?
JSch jsch = new JSch();
Session session = jsch._____("username", "yourserver.com", 22);
Using the JSch library for an SFTP connection, how do you establish a session before authenticating?
JSch jsch = new JSch();
Session session = jsch._____("username", "yourserver.com", 22);