Introduction
A significant change in the file transfer configuration of YADE will be introduced with release 1.11.This will mark the end of the use of text-based *.ini
files and the introduction of XML-based configurations in line with an XSD schema. In parallel, a new XML Editor will be available that will automatically generate required elements where appropriate as well as allow configurations to be verified according to the schema.
The two configuration formats are compared on this page.
Text-based file transfer configuration with *.ini
Files up to Release 1.10
File transfers are configured in YADE up to Release 1.10 in text-based .ini
files.
A *.ini
file contains a number of transfer profiles: blocks that contain the actual configuration parameters. As profiles can be used to specify other profiles, it is possible to develop a set of reusable "configuration building blocks'" that can be set together as required.
The *.ini
file and transfer profile to be used for a file transfer operation are specified when a command is sent to the YADE client.
*.ini
files can be configured using a text or code editor.
Limitations of the *.ini
file approach
Whilst this approach is relatively straightforward to understand when used with simple file transfer situations:
- it is prone to configuration errors and
- becomes difficult to understand and therefore maintain when advanced and complex file transfer configurations are implemented.
For further Information about configuring YADE using *.ini
approach see:
- The YADE Tutorials.
These provide a step by step guide to using configuring and running YADE. Tutorial examples are designed to use our online demo server and can be tested with minimal configuration work. A configuration file is available for download to help you get the tutorial examples running as quickly as possible. - An Example YADE settings file with profiles
XML-based file transfer configuration from Release 1.11 onwards
- Manage YADE XML Configuration files
- Assign YADE XSD Schema to configuration files
- Validate XML configuration files
- The schema-aware XML Editor suggests elements and attributes for configuration
- The XML Editor includes the YADE - Reference Documentation
- The XML Editor can be used to
- import and convert .ini settings files to XML configuraiton files.
- export compatible .ini settings files from valid XML configuration files for YADE releases before 1.11
The XML file transfer configuration introduced with release 1.11 of YADE allows parameter dependencies in YADE to be validated before the configuration file is transferred to an operating environment.
Dependencies and conflicts between configuration elements are avoided through the use of an XSD schema.
We have written an XML Editor that will simplify the creation and validation of schema-compatible file transfer configurations.
The basic principles behind the organization of the schema elements and parameters is described in Configuring File Transfers with the YADE Client.
A detailed description of individual parameters can be found in our Parameter Reference.
The following screen shot of the the SOS XML Editor shows the configuration for a Simple File Transfer with Basic Authentication example.
Although longer and seemingly more complex than a comparable configuration using the
file approach (see The YADE Client Tutorial 1), the XML code for this example was produced using the XML Editor and therefore has been validated against the YADE Client XSD Schema. It is therefore conflict free and dependencies are correctly specified.*.ini
Comparing *.ini
File and XML Configurations
Comparison of the two formats reveal a significant difference in the concept behind the two approaches to configuration:
*.ini
file configuration
Parameters such as host, protocol, user, password and dir (directory) are usually grouped separately in the*.ini
file configuration depending on their use as source or target. This usually has no functional meaning (the files are processed from top to bottom) and is partly simply for convenience (grouping parameters together makes them easier to find) and partly to allow their reuse in the form of so-called profile fragments if required.- XML configuration
- Parameters are divided up into hierarchical branches - the Profiles and Fragments branches being the most relevant here.
(Note that the expressions Profiles and Fragments are here defined differently to elements with the same names in the*.ini
file configuration.)- Authentication and connection parameters (Account & Password and Hostname & Port respectively) and the protocol (defined through the use of FTP) are part of the Fragments branch of the configuration.
- The operation (Copy) and the source and target file paths (FilePath and LocalTarget respectively) are specified in the Profiles branch.
- An FTPFragmentRef element in the Profile branch is used to specify the FTPFragment in the Fragments branch that contains the detailed information about the authentication and connection parameters.
- The division between Fragments and Profiles branches allows the reuse of elements whilst working within the strict hierarchical structure of XML.
- The use of a reference in the Profiles branch (in the example, using the FTPFragmentRef element) to specify the authentication and connection parameters in the Profiles branch allows any number of Profiles elements to be defined and specified as required.
- Parameters are divided up into hierarchical branches - the Profiles and Fragments branches being the most relevant here.
Migrating from *.ini
File to XML-based Configurations
Parameter Mapping
With the change to the XML-based configuration not only has a hierarchical structure been introduced to configuration elements but many of the names used for configuration elements have been changed. We have therefore written a parameter mapping table to help users with conversion of their configurations.
Further Information
Related Sections of this User Manual:
- YADE User Manual - Configuration Formats & Tools (this page)
- YADE User Manual - Configuring and Running File Transfers
See also:
- JobScheduler Monitoring Interface - XSD Schema Reference article for more detailed information about the XML-based configuration.
- Configuring and Running File Transfers which shows the configuration and command line calls for a simple file transfer in both settings.ini and XML-based configuration formats.
Pages
Navigation