Hi,
On 14 Nov 2004, at 20:29, Endre Magyari wrote:
<xsd:complexType name="ruleType"> <xsd:sequence minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="mathType" minOccurs="0"/> </xsd:sequence> </xsd:complexType>
You need to declare a prefix that binds to the uri for mathType and reference it via that.
EG
<xsd:complexType name="ruleType" xmlns:math="http://www.isis.vanderbilt.edu/2004/schemas/math" >
<xsd:sequence minOccurs="0" maxOccurs="unbounded">
<xsd:element ref="math:mathType" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
Gareth
-- Gareth Reakes, Managing Director Parthenon Computing +44-1865-811184 http://www.parthcomp.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]