Table of Contents

Search

  1. Preface
  2. Introduction to Data Transformation
  3. Data Processor Transformation
  4. Wizard Input and Output Formats
  5. Relational Input and Output
  6. Using the IntelliScript Editor
  7. XMap
  8. Libraries
  9. Schema Object
  10. Command Line Interface
  11. Scripts
  12. Parsers
  13. Script Ports
  14. Document Processors
  15. Formats
  16. Data Holders
  17. Anchors
  18. Transformers
  19. Actions
  20. Serializers
  21. Mappers
  22. Locators, Keys, and Indexing
  23. Streamers
  24. Validators, Notifications, and Failure Handling
  25. Validation Rules
  26. Custom Script Components

User Guide

User Guide

Example

Example

The XML input is a family tree. The input contains
Person
elements, which are recursively nested as shown:
<Person> <!-- Parent --> ... <Person> <!-- Child --> ... <Person> <!-- Grandchild --> ... </Person> </Person> </Person>
In a
Serializer
, an
EmbeddedSerializer
component can call itself recursively until all levels of nesting are exhausted.
In this example, the
schema_connections
property connects
Person
to
Person/Person
. This instructs the secondary instance of the serializer to process a nested level of the input. When the two
Person
elements have the same data type, it is sufficient to connect just the parent element (
Person
), and not the nested elements
(Person/*s/Name, Person/*s/BirthDate
, etc.)

0 COMMENTS

We’d like to hear from you!