Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IDEA] Add Proxy Option Within File Reader #6306

Open
RunnenLate opened this issue Sep 12, 2024 · 0 comments
Open

[IDEA] Add Proxy Option Within File Reader #6306

RunnenLate opened this issue Sep 12, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@RunnenLate
Copy link

Is your feature request related to a problem? Please describe.
Within the File Reader it would be nice to have the option to use a proxy the same way the HTTP Sender can use a proxy.

Describe your use case
Seems like like the functionality already exists within the JSCH library but using session.setProxy(new ProxyHTTP(host, port)); but just needs to be implemented within the File Reader.

var session = jsch.getSession('username', 'host', 'port');
var config = new java.util.Properties();
session.setConfig("PreferredAuthentications", "password");
config.put("StrictHostKeyChecking", "no");
session.setConfig(config)
session.setProxy(new ProxyHTTP('example.com, 443));
session.connect();
var channel = session.openChannel('sftp'); 

Having it available within the GUI like the HTTP Sender would be nice.
image

@RunnenLate RunnenLate added the enhancement New feature or request label Sep 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant