XML Schema 1.0 Conformance
Saxon Enterprise Edition (Saxon-EE) includes a complete implementation of XML Schema 1.0.
Test results have been submitted against the W3C XML Schema Test Suite. All deviations from the expected test results have been accounted for, and are believed to represent areas where the tests are either incorrect, or where implementations can legitimately differ.
Known limitations include the following:
-
Saxon imposes limits on the values of
minOccurs
andmaxOccurs
appearing on any particle other than an element particle in a content model. These limits are designed to prevent out-of-memory errors. By default, the upper limit forminOccurs
is 100 and the upper limit formaxOccurs
(other than "unbounded") is 250. If these limits are exceeded, a warning is output, and the values specified are replaced with the highest allowed value (which is "unbounded" in the case ofmaxOccurs
). The limits are configurable using the methodsetOccurrenceLimits()
in the class EnterpriseConfiguration. If they are set too high, however, out-of-memory or stack overflow errors will occur either during schema compilation or during instance validation. Since Saxon 9.1, these limits no longer apply to the common case of element particles, which are now handled using counters. -
Saxon implements schema processing only to the extent required for XPath, XSLT, and XQuery processing and for assessment of document validity. This means that PSVI properties beyond those required for the XPath data model are not provided. It also means that validation errors are fatal, they do not result in a PSVI that indicates the validation outcome for individual nodes.
-
Saxon uses the rules in XSD 1.1 rather than those in XSD 1.0 to evaluate type subsumption. The Saxon algorithm (an implementation of the algorithm published by Henry Thompson and Richard Tobin of the University of Edinburgh) is more accurate than the one in the XSD 1.0 specification in deciding whether one complex type subsumes another. It therefore permits some complex type restrictions that the cruder XSD 1.0 algorithm disallows.
-
Saxon also uses the Thomson and Tobin algorithm to evaluate the Unique Particle Attribution constraint. The effect of this is that no UPA violation is reported when a complex type contains two distinct element particles that are references to the same element declaration, since the element declaration can be identified unambiguously.
-
Saxon does not allow a user-defined type to be derived directly from
xs:anySimpleType
. It seems that the XSD 1.0 specification does not disallow this, though the effect of doing it is very unclear, and it has been banned in XSD 1.1.