pemapping Element

This topic describes the <pemapping> XML element.

General syntax
<pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
           xsi:noNamespaceSchemaLocation="path to the XSD file " 
           version="mapping engine version number"> 
     child instructions 
</pemapping>
DescriptionThe root node of the configuration. This is the start node. It contains the version of the mapping file. The current version of the mapping files is 1.0.
AttributesNameUseAnnotation
versionrequiredThe version of the configuration
Examples
<!-- the root structure of the configuration the mapping-schema.xsd can be 
     found in <3DEXPERIENCE_home>/data/mapping-schema.xsd --> 

<pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:noNamespaceSchemaLocation="mapping-schema.xsd"   
                 version="1.0">
    ...child instructions... 
</pemapping> 

<!-- the root structure of the configuration the mapping-schema.xsd can be found on local system in file C:/mapping-schema.xsd --> 

<pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:noNamespaceSchemaLocation="file:///C:/mapping-schema.xsd"
                 version="1.0"> 
    ...child instructions...
</pemapping>