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 YADE handle Managed File Transfer for UNC to UNC server transfers?
  • Does 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 names as well as server2server Server-2-Server (or site2siteSite-2-Site) transfer without touchdown. e.g. it is possible to use different protocols for the source and the target server in 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, e.g. Control-M, UC4, ...

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

This is a profile (section) of a configuration file. Just start with

Code Block

 jade.cmd -settings=settings-file-name -profile=Copy_Local2Local_UNC

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 profileServer to server transfer, from sftp to ftp without touchdown:

Code Block

 [ftpCopy_serverLocal2Local_2UNC_serverwithNetUse]
 sshinclude=Copy_authLocal2Local_method=passwordUNC
 
 source_user=kb
 source_password=*****
 source_ssh_auth_method=password
 source_host=wilma.sos
 source_protocol=sftp
 source_port=22
 
 target_user=test
 target_password=*****
 target_host=8of9.sos
 target_protocol=ftp
 target_port=21
 
 file_path=test.txt
 operation=copy
 
 log_filename=$\{TEMP\}/sosftphistory.log

You will find more information in our JADE Parameter Reference Document.

preTransferCommands=net use //8of9.sos/c;net use //r2d2.sos/share

In this example two commands, defined with the preTransferCommands parameter, will be executed after connecting and before starting the transfer.

Of course the commands that can be executed depend on the operating system on which the 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.

Code Block
 password=`get.password.sh`

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 YADE Client.

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

You don't need to specify a drive letter (on Windows).

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.

 Using JADE as an component via the API is described in our JADE API Reference.