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

Compare with Current View Page History

« Previous Version 4 Next »

 

  • JADE is an integrated managed file transfer solution. We recommend using our JADE JITL Job for a wide range of data transfers with FTP, SFTP etc.
  • This is a sample configuration for using the JADE JITL Job for a copy operation with target credentials from a Credential Store.

Sample JADE configuration

[SendUsingKeePass]
target_include                 = Keepass_DataBase, keepass_homer_ftp
operation                      = copy
make_Dirs                      = true
file_spec                      = CS-1.txt
;;
target_Dir                     = /home/test
target_make_Dirs               = true
target_transfer_mode           = ascii
;;
source_protocol                = local
source_host                    = localhost
source_dir                     = ${TEMP}/source

Sample job configuration

<?xml version="1.0" encoding="ISO-8859-1"?>
<job  title="Localhost to FTP server copy (API Job for JobScheduler Advanced Data Exchange)" order="no">
    <settings >
        <log_level ><![CDATA[debug9]]></log_level>
    </settings>
    <description >
        <include  file="jobs/jadeJob.xml"/>
    </description>
    <params >        
		<!-- JADE global profile ,background service settings , default log file -->
		<param  name="settings" value=".\jade_conf/jade_settings.ini"/>
		<param  name="profile" value="globals"/>
		
		<param  name="file_spec"                       value=".*"/>
        <param  name="operation"                       value="copy"/>
        <param  name="verbose"                         value="9"/>
    
        <!-- source settings -->
		<param  name="source_protocol"                 value="local"/>
        <param  name="source_host"                     value="localhost"/>		
        <param  name="source_dir"                      value="c:\sandbox\source"/>
		<!-- credential store settings -->
		<param  name="target_use_credential_store"     value="true"/>
        <param  name="target_credentialstore_filename" value=".\jade_conf\keepassX-test.kdb"/>
        <param  name="target_credentialstore_password" value="testing"/>
        <param  name="target_credentialstore_keypath"  value="sos/server/mp.sos"/>
		
        <!-- target settings -->
		<param  name="target_protocol"                 value="ftp"/>
        <param  name="target_dir"                      value="/home/test/inbound"/>
        <param  name="target_make_dirs"                value="true"/>
        <param  name="target_transfer_mode"            value="ascii"/>
      
    </params>
    <script  language="java" java_class="sos.scheduler.jade.JadeJob"/>
    <run_time />
</job>

  • No labels