Verify a static temp-table against XML Schema
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
This code sample demonstrates schema verification with a static temp-table:
|
As written, this code sample fails with the following error messages:


Because the verification mode is "STRICT", the
presence of more fields in the XML Schema than are actually defined
for the temp-table causes the method to fail. The definition and
the XML Schema are not an exact match. Change the verification mode
to "LOOSE", and the code completes successfully
because the temp-table definition is a partial match for the XML Schema.