luca-ma
luca-ma
I'm working with the original Jsch library (com.jcraft.jsch v. 0.1.55) to send and receive files to an sftp server I switched to the library (com.github.mwiede.jsch, v. 0.2.16) but I've an...
Is it possibile to have docker file for CMDBuild version 3.0? thanks
**Describe the bug** Hi, I'm using your example https://github.com/kubernetes-client/java/blob/master/examples/examples-release-18/src/main/java/io/kubernetes/client/examples/Example.java to get all Pod in a K8s cluster. CoreV1Api.listPodForAllNamespaces return a 401 response. Could you suggest how to configure the client...
Hi I'm trying to download a file via sftp using your library (v. 0.38.0) My code is this: try (SSHClient client = new SSHClient(); ){ client.addHostKeyVerifier(new PromiscuousVerifier()); client.setConnectTimeout(60000); client.connect(remoteHost, port);...