Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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)"];
yade_client  [label="YADE Client \n API \n JITL Job"];
yade_config [label="YADE Configuration"];

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

}

Configuration Example

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

...

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

...