You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Next »

Introduction

This is the second in a series of articles describing how to get started with using the the JADE Client via its Command Line Interface.

The articles in this series are:

  1. Getting Started and Downloading files
  2. Simple File Selection
  3. More Advanced File Selection
  4. File Transfer

  5. Checking files for completeness
  6. Public / Private Key Authentication

Prerequisites

See the Using the tutorials with the JADE Client Command Line Interface article for guidelines to setting up and running the tutorial examples.

Instructions for installing, configuring and using the XML Editor can be found in the XML Editor series of articles.

Download file

The configuration described in this file can be downloaded and then directly opened in the XML Editor from the following link:

File Selection - Simple Examples

Before starting to transfer files JADE reads the contents of the folder specified using one or more child elements of the Selection parameter.

In the examples in first article in this series a default setting, that all the files in the source directory will be downloaded, was used: .* .

In this example the source directory file list will be filtered so that only specific files are transferred.

File Name Filtering and Recursive File Transfer

The following profile shows how JADE can be used to:

  • Filter the names of files to be transferred using a regular expression
  • Transfer files from sub-directories recursively

Configuration structure

ProtocolFragment

The ftp_demo_sos-berlin ProtocolFragment used in the Client Command Line Interface - Getting Started tutorial will be reused.

Profile

Duplicate the ftp_server_to_local Profile and the name of the new instance changed to ftp_server_to_local_select_recursive.

In the new Profile, the following changes have been made:

  • The value of the file_spec defines the regular expression used to filter file names

  • A recursive child element has been added to the FileSpecSelection element and its value set to true (the default value is false).
  • The source_dir parameter has also been changed to:
    • /rec


 

This profile is called on Windows systems using one of the following commands, depending on the JADE version being used:

Running the file transfer settings.ini configuration in Windows format (JADE 1.10 and earlier)
jade.cmd -settings="%USERPROFILE%\jade_demo\sos-berlin_demo_2_local.ini" -profile="sftp_server_2_local_select_recursive"
Running the file transfer settings.ini configuration in Windows format (JADE 1.11 and later)
jade.cmd -settings="%USERPROFILE%\jade_demo\sos-berlin_demo_2_local.xml" -profile="sftp_server_2_local_select_recursive"

On Unix systems the profile is called using one of the following commands, depending on the JADE version being used:

Running the file transfer XML configuration in Unix format (JADE 1.10 and later)
./jade.sh -settings="${HOME}/jade_demo/sos-berlin_demo_2_local.ini" -profile="sftp_server_2_local_select_recursive"
Running the file transfer XML configuration in Unix format (JADE 1.11 and later)
./jade.sh -settings="${HOME}/jade_demo/sos-berlin_demo_2_local.xml" -profile="sftp_server_2_local_select_recursive"

Behavior

The relevant file structure on the source server is:

  • /
    • /rec
      test.txt
      test_1.txt
      • /sd
        test_2.txt
  • JADE will download the test_1.txt from the /rec folder on the server and ignore the test.txt file whose name does not match with the file_spec regular expression.
  • JADE will create a /sd folder in the target a directory if this folder does not already exist.
  • It will the open the /rec/sd sub-folder on the server, create a corresponding folder on the target and download the test_2.txt file to this folder.

Behavior with DisableErrorOnNoFilesFound = true

The default behavior of JADE is to throw an error if a file transfer is attempted and no files are found. The DisableErrorOnNoFilesFound element is used to allow JADE to attempt a file transfer without an error being generated if no files are found. This behavior can be useful when, for example, when polling for files.

The DisableErrorOnNoFilesFound element is specified as a Directives child element, the next screenshot shows how this element is integrated in a configuration:

The effect of setting the DisableErrorOnNoFilesFound element can be demonstrated if, for example, the FileSpec regular expression in the Profile element to, for example ^text\.txt$ and recalling the operation.

The file transfer will now end with an Exit-Code 99.

If, however, the DisableErrorOnNoFilesFound element is set to true, JADE will not throw an error.

Note:

  • The meaning of the values true and false for the DisableErrorOnNoFilesFound element are the opposite to the meaning for the element's settings.ini file predecessor, force_files.

Zero-Byte Files

The JADE Client can handle files with zero bytes in a number of ways, depending on the setting used for the TransferZeroByteFiles parameter, which is specified as a child of the Directives element.

Test Example

The default TransferZeroByteFiles setting is true. The screenshot below shows how this element is integrated in a duplicate of the ftp_server_2_local file transfer profile that was described in the first tutorial in this series. This new Profile has profile_id = ftp_server_2_local_zero_byte.

In its original configuration - i.e. with FileSpec set to .*, the ftp_server_2_local profile transfers six files from the SOS test server to the local file system. One of these files - ./test_4.txt - has zero bytes and can be used to demonstrate the use of the TransferZeroByteFiles parameter.

The screenshot also shows the relevant extract from the parameter reference for the TransferZeroByteFiles element with a description of the meaning of the different values the TransferZeroByteFiles element can have.

 

This profile is called on Windows systems using one of the following commands, depending on the JADE version being used:

Running the file transfer settings.ini configuration in Windows format (JADE 1.10 and earlier)
jade.cmd -settings="%USERPROFILE%\jade_demo\sos-berlin_demo_2_local.ini" -profile="sftp_server_2_local_zero_byte"
Running the file transfer settings.ini configuration in Windows format (JADE 1.11 and later)
jade.cmd -settings="%USERPROFILE%\jade_demo\sos-berlin_demo_2_local.xml" -profile="sftp_server_2_local_zero_byte"

On Unix systems the profile is called using one of the following commands, depending on the JADE version being used:

Running the file transfer XML configuration in Unix format (JADE 1.10 and later)
./jade.sh -settings="${HOME}/jade_demo/sos-berlin_demo_2_local.ini" -profile="sftp_server_2_local_zero_byte"
Running the file transfer XML configuration in Unix format (JADE 1.11 and later)
./jade.sh -settings="${HOME}/jade_demo/sos-berlin_demo_2_local.xml" -profile="sftp_server_2_local_zero_byte"

Behavior

  • With the TransferZeroByteFiles element set to false or relaxed (and with the FileSpec set to ^test_.\.txt$ as listed above) neither will the test_4.txt zero byte file be downloaded nor will an error be raised.
  • Setting the TransferZeroByteFiles element to false and rerunning the example will:
    • Cause the the test_4.txt file to be ignored as with the relaxed setting and
    • Cause an error to be raised if no files with more than zero bytes are found - i.e. if no files are to be transferred.
      This can be demonstrated by changing the FileSpec regex to ^test_[4]\.txt$ which will only match for the zero byte file.
  • A setting of TransferZeroByteFiles = strict will cause an error to be raised if any zero byte files are matched.

 

  • No labels