targetNamespace = "http://www.rntsoft.com/employees"
xmlns:cust = "http://www.rntsoft.com/employees"
elementFormDefault = "qualified"
attributeFormDefault = "unqualified">
The following instance document will not work:
employeeID = "2442"
clubCardMember = "true">
first
middle
last
The schema is expecting that we qualify the globally declared attribute name.
It wants to see the following:
xmlns:cust = "http://www.rntsoft.com/employees"
clubCardMember = "true"
cust:employeeID = "2442">
first
middle
last