Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Maven users will need to add the following dependency to their pom.xml for this component:

Code Block
xml
xml

<dependency>
    <groupId>org.apache.camel</groupId>
    <artifactId>camel-jsch</artifactId>
    <version>x.x.x</version>
    <!-- use the same version as your Camel core version -->
</dependency>

URI format

Code Block

scp://host[:port]/destination[?options]

...

The file name can be specified either in the <path> part of the URI or as a "CamelFileName" header on the message (Exchange.FILE_NAME if used in code).

Options

Div
classconfluenceTableSmall
 
Wiki Markup
{div:class=confluenceTableSmall}{div}

Name

Description Example

Default Value

username

Specifies the username to use to log in to the remote file system. 

null

password

Specifies the password to use to log in to the remote file system.

 

null

knownHostsFile

Sets the known_hosts file, so that the scp endpoint can do host key verification. 

null

strictHostKeyChecking

Sets whether to use strict host key checking. Possible values are: no, yes 

no

chmod

Allows you to set chmod on the stored file. For example chmod=664.

null

useUserKnownHostsFileCamel 2.15: If knownHostFile has not been explicit configured, then use the host file from
System.getProperty("user.home") + "/.
ssh/known_hosts"true

Component Options

The JschComponent supports the following options

Name

Description

Default Value

verboseLogging

Camel 2.15: JSCH is verbose logging out of the box. Therefore we turn the logging down to DEBUG logging by default.

true

 

null

Limitations

Currently camel-jsch only supports a Producer (i.e. copy files to another host). The reason is that the scp protocol does not offer the possibility to scan (list) the content of a directory. As such a polling consumer cannot watch for changes and trigger events on changes. It is possible however to use camel-jsch in sink mode for one time copy from a remote host using a ConsumerTemplate (see Polling Consumer(s) for more details). If continuous monitoring of a directory on a remote host and secure transfer is required, you can consider using the sftp protocol. 

Include Page
Endpoint See Also
Endpoint See Also