This Document type is used to export data directly in to a XML document from the DriveWorks Project.
An XML (Extensible Markup Language) is a format commonly used for inter-operation between different systems.
In DriveWorks Administrator open the Project the Document is to be added to and go to Stage4: Output Rules then Documents - Files
Valid extensions are:
Please see Info: Where To Store DriveWorks Data for information on where to store the data associated to a DriveWorks implementation.
If the Document Path is not set then the file will be created in the Specification Folder.
# | Master Document | DriveWorks Input | Expected Output |
---|---|---|---|
1 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values from individual variables assigned to height, width, depth. | <?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <height>3</height> <width>2</width> <depth>1</depth> </cube> </cubes> |
2 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values driven from a Simple Table to the 'cube' node | <?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Height>1</Height> <Width>2</Width> <Depth>3</Depth> </cube> </cubes> |
3 | <cubes> <cube></cube> </cubes> | Values driven from a Simple Table to the 'cube' node |
The child nodes are automatically created based on the column headers
<?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Height>1</Height> <Width>2</Width> <Depth>3</Depth> </cube> </cubes> |
4 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values driven from a Simple Table with multiple rows to the 'cube' node. | <?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Height>1</Height> <Width>2</Width> <Depth>3</Depth> </cube> <cube> <Height>4</Height> <Width>5</Width> <Depth>6</Depth> </cube> <cube> <Height>7</Height> <Width>8</Width> <Depth>9</Depth> </cube> </cubes> |
5 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values driven from a Simple Table to the 'cube' node where the table has the incorrect quantity of columns | The additional column is added as a new child node of cube
<?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Height>1</Height> <Width>2</Width> <Depth>3</Depth> <Color>Green</Color> </cube> </cubes> |
6 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values driven from a table with incorrect column headers | The cubes child nodes are removed from the master Document and replaced with the headers of the table.
<?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Radius>2</Radius> <Diameter>4</Diameter> <Volume>20</Volume> </cube> </cubes> |
7 | <cubes> <cube> <height/> <width/> <depth/> </cube> </cubes> | Values driven from a Calculation Table with a nested Simple Table. | <?xml version="1.0" encoding="UTF-8"?> <cubes> <cube> <Depth>1</Depth> <Width>2</Width> <Diameter>3</Diameter> <Table> <Radius>2</Radius> <Diameter>4</Diameter> <Volume>20</Volume> </Table> </cube> </cubes> |
8 | <cubes> <cube width="" depth="" height=""/> </cubes> | Values from individual Variables assigned to height, width, depth nodes as well as a value applied to the cube node. | The cubes child nodes are removed from the master Document and replaced with the headers of the table.
<?xml version="1.0" encoding="UTF-8"?> <cubes> <cube width="3" depth="1" height="3"/> </cubes> |
For any external application reading an XML file, the above is all that is required. If an XML file is to be displayed in a web browser, it will require a transform file to accompany the file. The transform file tells the browser how to display the XML.
XSL files must exist in the same location as the XML file it is used to display.
When requiring a XSL transform file to display a driven XML file, create a new Document for output and use the Copied File option.
Select the XSL file to use and build a rule that will place it in the same location as the XML file being driven. Exactly the same procedure for any static image files used in the XML can be adopted.
The XML Document (Advanced) is triggered in the Specification Flow by the Release Documents task.