im getting unknown element for every single element tag in my xml..
im also getting this error Message: The content of an element information item does not match (annotation?, (simpleType | complexType)?, (unique | key | keyref)*)
id first like to understand what these errors mean
In your element definition for the OPTION element, you have not defined a TYPE attribute.
You seem to be confusing the TYPE attribute of the XML Schema Language with a TYPE attribute of the OPTION element. These are not the
same. I suggest for your initial learning period, rename the OPTION element's TYPE attribute to O_TYPE. This may help you understand
what you are attempting to do.
You also are not correctly defining the OPTION element's type and your schema contains errors.
joey mo
Greenhorn
Joined: Mar 31, 2010
Posts: 9
posted
0
Thank you.
yes i was getting them mixed up :S
just wondering also if this is possible to..
set a limiting on how many times element can be made
because everytime i try <xs:element option minoccur="10" maxoccur="20"/> i get errors in my parser saying cannot put that in global element.