[
https://issues.apache.org/jira/browse/CAMEL-6266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13771706#comment-13771706
]
Joakim Ek commented on CAMEL-6266:
----------------------------------
The documentation in the wiki looks good.
But I wonder if one should give an example of using a proxy that requires
username and password. As the com.jcraft.jsch.Proxy class doesn't take these as
constructor arguments one needs to set those using a MethodInvokingFactoryBean.
Not that complicated but maybe not totally obvious either:
I'm using this:
{code}
<!-- set the username and password for the proxy -->
<bean id="setProxyUsernameAndPassword"
class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
<property name="targetObject"><ref local="proxy"/></property>
<property name="targetMethod"><value>setUserPasswd</value></property>
<property name="arguments">
<list>
<value>user</value>
<value>password</value>
</list>
</property>
</bean>
{code}
> Support for SFTP through a proxy
> --------------------------------
>
> Key: CAMEL-6266
> URL: https://issues.apache.org/jira/browse/CAMEL-6266
> Project: Camel
> Issue Type: Improvement
> Components: camel-ftp
> Reporter: Joakim Ek
> Assignee: Christian Müller
> Priority: Minor
> Fix For: 2.11.1, 2.12.0
>
> Attachments: sftp_proxy.patch
>
>
> FTP and FTPS have the 'ftpClient' option that allows the use of a custom
> org.apache.commons.net.ftp.FTPClient instance. I.e.
> org.apache.commons.net.ftp.FTPHTTPClient to access a FTP server through a
> HTTP proxy.
> SFTP currently lacks proxy support in Camel. The used JSch library however
> has support for proxies.
> This patch adds a SFTP only option 'proxy' which allows passing in an
> instance of com.jcraft.jsch.Proxy to JSch. This enables the use of SFTP
> through HTTP, SOCKS4 and SOCKS5 proxies.
> Included are two new basic unit tests using [Little
> Proxy|http://www.littleshoot.org/littleproxy/] to verify consuming and
> producing through a HTTP proxy.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira