`我有一个简单的类型xsd元素,我想将其转换为复杂类型,因为我希望最终的wsdl是文档类型文字格式。你能帮忙吗?
<xsd:element name="Service">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="loan.CreateLead" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
我希望将其转换为具有相同名称元素且具有枚举值的复杂类型。请告诉我这个? 谢谢 不厌
答案 0 :(得分:0)
这是一种做法。问题是,你一次只能扩展/限制一个,因此采用两步法。
我保留原来的一个仅供参考,否则第一个服务元素可能是“限制”类型。
<?xml version="1.0" encoding="utf-8" ?>
<!-- XML Schema generated by QTAssistant/XSD Module (http://www.paschidev.com) -->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" xmlns="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Service">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="loan.CreateLead"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:simpleType name="arestriction">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="loan.CreateLead"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:element name="Service1">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="arestriction"/>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:schema>