⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 anyschema.xsd

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 XSD
字号:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	attributeFormDefault="qualified" elementFormDefault="qualified"
	targetNamespace="http://codehaus.org/xfire/xmlbeans">

    <!--
        Yes, this is a very obtuse type, the point is to have inner types
        without names - this caused NPE's on WSDL generation at one point
    -->
    <xsd:element name="trouble">
        <xsd:complexType>
            <xsd:all>
                <xsd:element name="inner">
                    <xsd:complexType>
                        <xsd:all>
                            <xsd:element name="wombat">
                                <xsd:simpleType>
                                    <xsd:restriction base="xsd:string">
                                        <xsd:enumeration value="joe"/>
                                        <xsd:enumeration value="bob"/>
                                    </xsd:restriction>
                                </xsd:simpleType>
                            </xsd:element>
                        </xsd:all>
                    </xsd:complexType>
                </xsd:element>
            </xsd:all>
        </xsd:complexType>
    </xsd:element>

    <xsd:element name="request">
		<xsd:complexType>
			<xsd:all>
				<xsd:element maxOccurs="1" minOccurs="1"
					name="sessionId" type="xsd:string" />
			</xsd:all>
		</xsd:complexType>
	</xsd:element>

	<xsd:element name="response">
		<xsd:complexType>
			<xsd:all>
				<xsd:element maxOccurs="1" minOccurs="1" name="form"
					type="xsd:anyType" />
			</xsd:all>
		</xsd:complexType>
	</xsd:element>
</xsd:schema>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -