xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.rntsoft.com/namespaces/employee"
xmlns="http://www.rntsoft.com/namespaces/employee"
elementFormDefault="qualified"
attributeFormDefault="qualified">
We have set both attributes to qualified; therefore, all elements and attributes in our instance document must be qualified:
xmlns:em="http://www.rntsoft.com/namespaces/employee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.rntsoft.com/namespaces/employee employee.xsd"
em:dept="programming"
em:client="Smith and Co">
Joe Smith
a@a.com
2008-10-29
If we set elementFormDefault to qualified and omit attributeFormDefault (its default value is unqualified),
we could use the following document instance:
xmlns:em="http://www.rntsoft.com/namespaces/employee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.rntsoft.com/namespaces/employee employee.xsd"
dept="programming"
client="Smith and Co">
Joe Smith
a@a.com
2008-10-29