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

Server-to-Server File Transfer without touchdown

File Transfer Schema

Graphviz
 digraph "Example: Server-to-Server File Transfer" {
rankdir=LR;

edge [color="#31CEF0"];

source_server [label="Data Source (sFTP)"];
target_server  [label="Data Target (FTP)"];
jadeyade_client  [label="JADEYADE Client \n API \n JITL Job"];
jadeyade_config [label="JADEYADE Configuration"];

source_server->target_server [label="data transfer"];
source_server->jade>yade_client  [dir=both label="commands" color="grey"];
source_server->jade>yade_client  [dir=both label="polling" color="blue"];
jadeyade_client->target_server  [dir=both label="commands"  color="grey"];
jadeyade_config->jade>yade_client [color="green"];

}

Configuration Example

A profile definition for Server-to-Server File Transfer, from SFTP to FTP:

...

In this example all files with the file name extension .txt should be transferred from the server wilma via SFTP to the server 8of9 by FTP. JADE YADE will do the polling on the source server for specific files.

...

The include parameter will include the named profile snippets in the order they are defined. The globals profile is included automatically, no need to specifiy it in an include parameter.
The profiles have to be defined in the same settings file.

See also

...