Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

Questions:

  • Can JADE YADE handle Managed File Transfer for UNC to UNC server transfers?
  • Does JADE YADE allow single source to numerous destination UNC file transfers?
  • If I have to specify credentials for the transfer, can that be setup securely, without it being in plain text?

Answer:

UNC to UNC server transfers

Yes. JADE (JobScheduler Advanced Data Exchange) YADE allows the use of UNC names as well as Server-2-Server (or Site-2-Site) transfer without touchdown. e.g. it is possible to use different protocols for the source and the target server for a transfer. JADE YADE can be used standalone as a command line client and together with JobScheduler in a scheduling enviroment. We have customers who are using JADE YADE together with different Job Schedulers.

Example I: Using UNC Names in

...

YADE:

Code Block
 [Copy_Local2Local_UNC]
 source_protocol = local
 source_dir = //8of9.sos/c/temp
 
 target_dir = //r2d2.sos/share/nobackup/junittests/testdata/JADE
 target_protocol = local
 
 log_filename = ${TEMP}/test.log
 file_spec = ^.*\.(txt|dot)$
 operation = copy
 remove_files = false

...

All Files in the folder "//8of9.sos/c/temp" (source folder) with txt or dot file name extentions (specified with file_spec parameter) will be transferred (copied) to the "//r2d2.sos/share/nobackup/junittests/testdata/JADE" target folder. This is a local operation and therefore a (s)FTP(S) server is not needed. "file_spec" is not like a wildcard, it is a regular expression.

Example II: Using UNC Names and the "net use" command:

Note that it is possible to define the "net use" or any other os command directly in the profile:

...

Of course the commands that can be executed depend on the operating system on which the JADE client YADE Client is running.

See also Transfer to Multiple Destinations.

Securely Specifying Transfer Credentials

It is possible to securely specify transfer credentials, so that they are not visible in plain text.

Getting the password from a script

For a transfer where a password is required (e.g. (s)FTP(S)) you can get the password by specifing the name of a shell script (in backticks) which will return the value of the password.

...

The script itself will be executed as a separate process.
The content in stdout created by the script will be used as the value for the password.

private/public key usage

For SFTP you can use PPK authorisation.

Windows: net command

For UNC names you can use, for example on Windows systems, a .net command before you start the JADE clientYADE Client.

Code Block
 Example:  Net Use \\yourUNC\path /user:uname password

...

If credentials are a concern, then we recommend the use of SFTP with PPK whenever possible, which, of course depends on the configuration of the server.

Further Information

See also our JadeParameterReference.

Using JADE YADE as a component via the API is described in our JadeAPIReference.

...