就像是....
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<element name="myRootElement">
<complextype>
<sequence>
<import namespace="namespace1" schemaLocation="xsd/schema1.xsd" />
<import namespace="namespace2" schemaLocation="xsd/schema2.xsd" />
在这里,我想拥有我的两个模式,我应该使用引用还是其他东西,因为在本节中不允许导入和包含,我希望我的根元素将它们都作为一个......(myRootElement)我可以使用哪些可能的方法
</sequence>
</complextype>
</element>
</schema>
</wsdl:types>