schema控制xml的问题
请问下面的schema文件生成的xml文件应该是什么格式的
<xs:element name="person"> <xs:complexType> <xs:choice> <xs:element name="employee" type="employee"/> <xs:element name="member" type="member"/> </xs:choice> </xs:complexType></xs:element>
<person> <employee> …………… </employee></person>
[解决办法]