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

📄 omit.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?xml version="1.0" encoding="utf-8"?><!--  This tests the omission of an element which has minOccurs=0--><definitions name="OmitTest" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://omit.wsdl.test/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://omit.wsdl.test/"><types>    <s:schema targetNamespace="http://omit.wsdl.test/" elementFormDefault="qualified">        <s:element name="Phone">            <s:complexType>                <s:sequence>                    <!-- required element; not nillable -->                    <s:element name="areaCode" type="s:string" minOccurs="1" maxOccurs="1"/>                    <!-- optional element; not nillable -->                    <s:element name="prefix" type="s:string" minOccurs="0" maxOccurs="1"/>                    <!-- optional element; nillable -->                    <s:element name="number" type="s:string" nillable="true" minOccurs="0" maxOccurs="1"/>                </s:sequence>            </s:complexType>        </s:element>    </s:schema>    </types>    <message name="echoPhoneIn">        <part name="in" element="s0:Phone"/>    </message>    <message name="echoPhoneOut">        <part name="out" element="s0:Phone"/>    </message>    <portType name="omit">        <operation name="echoPhone">            <input message="s0:echoPhoneIn"/>            <output message="s0:echoPhoneOut"/>        </operation>    </portType>    <binding name="omit" type="s0:omit">        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>        <operation name="echoPhone">            <soap:operation style="document" soapAction="http://tempuri.org/echoPhone"/>            <input>                <soap:body use="literal"/>            </input>            <output>                <soap:body use="literal"/>            </output>        </operation>    </binding>    <service name="omitTest">        <port name="omit" binding="s0:omit">            <soap:address location="http://localhost:8080/axis/services/omit"/>        </port>    </service></definitions>

⌨️ 快捷键说明

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