RE: Jsch issue with compression algorithm

2014-10-28 Thread Willem Jiang
> to lines of codes in SftpOperations identified above. > > > Regards > Keshav > > > -Original Message- > From: Willem Jiang [mailto:willem.ji...@gmail.com] > Sent: Monday, October 20, 2014 2:39 PM > To: users@camel.apache.org > Subject: RE: Jsch

RE: Jsch issue with compression algorithm

2014-10-27 Thread Baweja, Keshav
should be localized to lines of codes in SftpOperations identified above. Regards Keshav -Original Message- From: Willem Jiang [mailto:willem.ji...@gmail.com] Sent: Monday, October 20, 2014 2:39 PM To: users@camel.apache.org Subject: RE: Jsch issue with compression algorithm Hi,  I just c

RE: Jsch issue with compression algorithm

2014-10-19 Thread Willem Jiang
Hi,  I just check the configuration, “none” means the compression will not be done if sshd doesn’t support to compress the data from sshd to jsch.  Current release has supported following properties, * compression.s2c: zlib, none   default: none   Specifies whether to use compression for the dat

RE: Jsch issue with compression algorithm

2014-10-19 Thread Baweja, Keshav
Looking at the code in SftpOperations.java in createSession() // compression if (sftpConfig.getCompression() > 0) { LOG.debug("Using compression: {}", sftpConfig.getCompression()); session.setConfig("compression.s2c", "z...@openssh.com, zlib, none");