OD 6.0
The xmlData element seems to require xmlType attribute, however it is not mentioned in the DTD.
Example config:
<dbLoader
useDatabaseRef="mysql-db"
databaseXmlFile="/targethost/database.xml">
<xmlData schemaMapFile="/full/path/to/dbschema.cfg" xmlType="custom"/>
</dbLoader>
DTD in od.600.ref.pdf:
xmlData
The xmlData element indicates that those files being deployed are XML files whose contents are to be deployed to a database.
DTD Definition
In the deployment source DTD, the xmlData element is defined as:
<!ELEMENT xmlData EMPTY>
<!ATTLIST xmlData
schemaMapFile CDATA #REQUIRED>
Associated Attributes
The following attribute is associated with the xmlData element:
schemaMapFile — specifies the full path to the database schema file. For example: schemaMapFile="/myschemas/schemaForXmlType1.cfg"
If I don't use the xmlType, I get error of missing attribute. Can somebody point me to the right documentation on this ? What are the other possible values for xmlType ?