wwXML::CreateObjectStructureDTD
Low Level Output Method
This method creates a DTD from an object. The DTD generated is not complete in that it lacks the DocType and top level document root definition. This is so you can string together multiple cursors or objects in a single DTD.
The generated DTD elements look like this for a table:
... more elements here
Note that the DocType DTD header and the docroot element are missing as well as the DTD closing tags:
... element code from above goes here ]>
Note that this setup allows for maximum configuration at the expense of some ease of use. However, it's fairly easy to create the DTD header and footer with a single line of code. The following is actually what ObjectToXML does:
IF THIS.lCreateDataStructure lcOutput = lcOutput + ; "" + CR + ; THIS.CreateObjectStructureDTD(loXMLElement) + CR + ; "]>" + CR + CR ENDIF
If you were to add additional tables or objects you'd have to add them to the lcName code above.
o.CreateObjectStructureDTD(oObject, cName)
XML string or "". On "" check cErrorMsg for error information.
Parameters
oObject
The object that is to be parsed
cName
The name of the object in the XML tree. This is the name of the of the element directly above the property elements.
Example
]>
© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic