Re: [JSch-users] Session hang when connected with openSSH

2014-05-19 Thread aarthit 2014
Hi All, we did further analysis and the findings are given below. The issue is narrowed down to a read function in ChannelSession.java file. public void run(){ Buffer buf=new Buffer((rmpsize)); … while(isConnected() && thread!=null && io!=null && io.in!

[JSch-users] Could ChannelSftp.LsEntry be declared static

2014-05-19 Thread laogao
Hi, It seems (as of version 0.1.51) the inner class LsEntry is declared as "public class LsEntry" inside ChannelSftp. I believe there is a subtle difference between inner (non-static) classes and nested (static) classes, which is causing me some headaches using JSch e.g. from Scala (could be circu