I am facing a issue with JSCH working fine outside the AEM. But failing inside AEM.JSch jsch = new JSch();
// Add the private key identity
jsch.addIdentity(privateKeyPath);
// Get a session
session = jsch.getSession(username, host, port);
// Configure session properties
Properties config = new Pr...