Database Error Messages

LPX-00100

root element "~1S" does not match DTD root "~2S"

Cause

Validity Constraint 2.8 failed: "The Name in the document type declaration must match the element type of the root element." *Example: <?xml version="1.0"?> <!DOCTYPE greeting [ <!ELEMENT greeting (#PCDATA)> ]> salutationHello!/salutation *Explanation: The document's root element, salutation, does not match the root element declared in the DTD (greeting).


Action

Correct the document.