Here is my code :
<?xml version="1.0"?>
<xs:schema xmlns:xs=" <xs:element name="Forum">
<xs:complexeType>
<xs:sequence>
<xs:element ref="frmName"/>
<xs:element ref="frmRight" />
<xs:element ref="frmLastPost" />
<xs:element ref="frmTopicCount" />
<xs:element ref="Topic" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexeType>
</xs:element>
and it continu...
I get an error at line 4 it say that i cannot use complexe type. I did this after reading 2 tutorial, and i can't figure the problem. Can anyone help me ?
<?xml version="1.0"?>
<xs:schema xmlns:xs=" <xs:element name="Forum">
<xs:complexeType>
<xs:sequence>
<xs:element ref="frmName"/>
<xs:element ref="frmRight" />
<xs:element ref="frmLastPost" />
<xs:element ref="frmTopicCount" />
<xs:element ref="Topic" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexeType>
</xs:element>
and it continu...
I get an error at line 4 it say that i cannot use complexe type. I did this after reading 2 tutorial, and i can't figure the problem. Can anyone help me ?