If the targetNamespace is not the default namespace in your schema, you have to namespace qualify all references to type names, element names etc
indexRef.SchemaTypeName = new XmlQualifiedName("IndexType"); should be
indexRef.SchemaTypeName = new XmlQualifiedName("IndexType", "MyPresentationSchema");
and the above change should change this <xs:element name="Indexes" type="IndexType" /> to
<xs:element name="Indexes" type="tns:IndexType" />
Thanks,
Priya
|