XSL Mapping

Used to map data collected from each connection into a single output. This negates the need to use XSL for mapping in a vMash Design. This means mapping columns with different names to a single column.

Column

The column that will be created in the output.

Path

The path to the data collected from the XML. Include only the parent path to the parent node, not the child data.

Mapping

The node to look for within the XML that contains the data you want to consume and place into the column. This does not support attributes.

Example:

<Configuration>

          <Match>

                   <Column>PID</Column>

                   <Path>NewDataSet/Table1</Path>

                   <Mapping>project_id</Mapping>

          </Match>

          <Match>

                   <Column>PID</Column>

                   <Path>NewDataSet/Data</Path>

                   <Mapping>ProjectID</Mapping>

          </Match>

          <Match>

                   <Column>Status</Column>

                   <Path>NewDataSet/Table1</Path>

                   <Mapping><!--If Empty, then no data, but create Node anyway--></Mapping>

          </Match>

          <Match>

                   <Column>Status</Column>

                   <Path>NewDataSet/Data</Path>

                   <Mapping>Status</Mapping>

          </Match>

</Configuration>