Versions Compared

Key

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

...

Graphviz
digraph "Example: Server to Server File Transfer" {
rankdir=LR;
edge [fontname=Verdana,fontsize=8,color="#31CEF0"];
node [fontname=Verdana,fontsize=8];

source_server [label="Host A\nData Source (SFTP)"];
target_server  [label="Host B\nData Target (FTP)"];
jade_client  [label="Host C\nJADE Client \n API \n JITL Job"];
jade_config [label="JADE Configuration"];

source_server->jade_client  [label="file transfer" color="greebgreen"];
jade_client->target_server  [label="file transfer"  color="green"];
jade_config->jade_client [color="grey"];
}

...

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

See also

...