SFTP Smart Services

Overview

Contains multiple Smart Services for interacting with a remote file server via SFTP, FTP, or SCP.  Using these services, an Appian application can be configured to send and receive files, folders, and metadata in a process.  Features support for zlib compression.

Key Features & Functionality

Smart Services included:

  • SFTP:
    • Remove Directory Over SFTP (Basic Credentials)
    • Send File Over SFTP
    • Send File Over SFTP (Basic Credentials)
    • Receive File Over SFTP
    • Receive File Over SFTP (Basic Credentials)
    • Rename File Over SFTP
    • Get Remote Directory Contents Over SFTP
    • Get Remote Directory Contents Over SFTP (Basic Credentials)
    • Create Directory Over SFTP
    • Create Directory Over SFTP (Basic Credentials)
  • SCP:
    • Send File Over SCP
    • Receive File Over SCP
  • FTP:
    • Send File Over FTP
    • Receive File Over FTP
    • Receive Folder Over FTP
  • FTPS
    • Receive Folder Over FTPS
    • Send File Over FTPS (Basic Credentials)

All smart services in the package use Secure Credentials Store.

Anonymous
Parents
  • Would the authors of this plug-in consider making this change in SFTPConfig.java?
    We were being prompted in the TomCat log to enter a password even though key exchange was being utilized.  Research into the jsch.jar  file showed that we needed to add the below line to SFTPConfig.java.  Would you consider adding that to your base code?

    session.setConfig("PreferredAuthentications", "publickey,keyboard-interactive,password");
Comment
  • Would the authors of this plug-in consider making this change in SFTPConfig.java?
    We were being prompted in the TomCat log to enter a password even though key exchange was being utilized.  Research into the jsch.jar  file showed that we needed to add the below line to SFTPConfig.java.  Would you consider adding that to your base code?

    session.setConfig("PreferredAuthentications", "publickey,keyboard-interactive,password");
Children
No Data