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

Question:

My company currently uses BMC’s Control-M for automation tasks. It unfortunately doesn’t include 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 for the transfer, can that be setup without it being in plain text?

...

Code Block
 [ftp_server_2_server]
 ssh_auth_method=password
 
 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

Example: Using UNC Names with JADE III:

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

Code Block

 [Copy_Local2Local_UNC_withNetUse]
 include=Copy_Local2Local_UNC
 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 JADE client is running.

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

...