ZVON > Tutorials > XML Schema and Relax NG Tutorial |
Intro / Search / ZVON |
Index | >> Example 10 / 10 << | Prev | Next | |
Please, send all comments, bug-reports, and contributions to Jiri.Jirat@systinet.com. Thank you very much.
XML Schema keys: any, maxOccursThe root element named "root" can have an arbitrary number of any elements from namespace other than the target namespace. The target namespace is null here. The "namespace" attribute will be set to value "##other". It will allow all elements which are from namespace other than null namespace.
Valid document <root xsi:noNamespaceSchemaLocation="correct_0.xsd" xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <a:a xmlns:a="http://bar" /> </root> Invalid document <root xsi:noNamespaceSchemaLocation="correct_0.xsd" xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > <a/> </root> |
Correct XML Schema (correct_0.xsd) <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" > <xsd:element name="root"> <xsd:complexType> <xsd:sequence minOccurs="1" maxOccurs="1"> <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="skip"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:schema> |
The element "anyName" says that the attribute can have any name from any namespace. We will exclude all attributes from the null namespace ("target namespace") using the "except" and "nsName" elements.
Valid document <root xmlns=""> <a:a xmlns:a="http://bar" /> </root> Invalid document <root xmlns=""> <a/> </root> |
Correct Relax NG schema (correctRelax_0.rng) |