RE: Information required on Asynchronous file transfer using SCP on Apache SSHD

2019-02-17 Thread Seshkrishna Golla
) Regards Seshkrishna [Altair_horizontal_CMYK_wout_guides] Altair | Innovation Intelligence(r) From: Seshkrishna Golla Sent: 05 February 2019 18:17 To: dev@mina.apache.org Cc: seshukrishna.rg...@gmail.com Subject: Information required on Asynchronous file transfer using SCP on Apache SSHD Hi Team, I

Re: Information required on Asynchronous file transfer using SCP on Apache SSHD

2019-02-05 Thread Lyor Goldstein
I see no a-priori reason why one should not be able to run multiple SCP upload/downloads over a single session: try (ClientSession session = client.connect(...) ,verify(...timeout...) .getSession()) { session.addPassword(...) / addKey(...);

Information required on Asynchronous file transfer using SCP on Apache SSHD

2019-02-05 Thread Seshkrishna Golla
Hi Team, I have a requirement with Apache SSHD, Requirement: Need to send multiple files(consider 100 files are stored in different locations in local file system) to remote server using ScpClient. I can able to do this with the below code, considering the below snippet the