Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Questions:
- Can JADE handle Managed File Transfer for UNC to UNC server transfers?
- Does JADE allow single source to numerous destination UNC file transfers?
- If I have to specify credientals 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) 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 can be used standalone as a command line client and together with JobScheduler in a scheduling enviroment. We have customers who are using JADE together with different Schedulers, e.g. Control-M, UC4, ...Job Schedulers.
Example I: Using UNC Names in JADE:
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:
...
See also Transfer to Multiple Destinations.
Securely Specifying Transfer Credentials
It is possible to securely specify transfer credentalscredentials, 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 of </code>stdout</code> in stdout created by the script will be used as the value for the password.
private/public key usage
For sFTP SFTP you can use PPK authorisation. JADE uses JSch (JCraft) and alternatively Trilead for SSH.
...
Windows: net command
For UNC names you can use, for example on Windows systems, a .net command before you start the JADE client.
...
You don't need to specify a drive letter (on Windows).
If credentials are a big issueconcern, then we recommend the use of sFtp SFTP with PPK whenever possible, which, of course depends on the configuration of the server.
Further Information
See also our JadeParameterReference
.
Using JADE as an a component via the API is described in our JadeAPIReference
.