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

Compare with Current View Page History

« Previous Version 16 Next »

JADE Implementation Architecture

JADE Implementation Architecture Details

JADE have following main components

  1. JADE Engin
  2. Options Engin
  3. JADE Engine Interface
  4. VFS (Virtual File System) Interface
    1. FTP
    2. SFTP
    3. FTPS
    4. WebDAV
    5. CIFS
    6. Local (native copy)

JADE Server-to-Server File Transfer

JADE can transfer files from Source Server to Target Server without touch down. JADE uses "Streams" or common terminology pipe to transfer file from Source to Target. JADE opens an input stream from source server and output stream with target server. By default JADE read/write 32Kb chunks from input to output stream. One can increase the buffer size by setting buffer_size parameter , but bigger buffer size may not result in higher transfer speed. JADE transfers files from source server to target server without "touch down" means,during transfer file is never written to the intermediate server (where JADE is running).
For more information about JADE Server to server transfer configuration see link JADE server to server transfer
JADE have a generic implantation for Virtual file System or Data Provider, which make it easy to implement new Protocols.

  • No labels