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

📄 opstyles.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?xml version="1.0" ?><definitions     name="operation styles test"    targetNamespace="urn:opStyles.wsdl.test"    xmlns:tns="urn:opStyles.wsdl.test"    xmlns:xsd="http://www.w3.org/2001/XMLSchema"    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"    xmlns="http://schemas.xmlsoap.org/wsdl/">  <!-- message declns -->  <message name="empty"/>  <!-- port type declns -->  <portType name="opStyles">    <operation name="oneway">      <input message="tns:empty"/>    </operation>    <operation name="requestResponse">      <input message="tns:empty"/>      <output message="tns:empty"/>    </operation>    <operation name="solicitResponse">      <output message="tns:empty"/>      <input message="tns:empty"/>    </operation>    <operation name="notification">      <output message="tns:empty"/>    </operation>  </portType>  <!-- binding declns -->  <binding name="opStyleBinding" type="tns:opStyles">    <soap:binding        style="rpc"        transport="http://schemas.xmlsoap.org/soap/http"/>    <operation name="oneway">      <soap:operation soapAction=""/>      <input>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>    </operation>    <operation name="requestResponse">      <soap:operation soapAction=""/>      <input>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>    <operation name="solicitResponse">      <soap:operation soapAction=""/>      <input>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </input>      <output>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>    <operation name="notification">      <soap:operation soapAction=""/>      <output>        <soap:body            use="encoded"            namespace=""            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>      </output>    </operation>  </binding>  <!-- service decln -->  <service name="opStyleService">    <port name="OpStyles" binding="tns:opStyleBinding">      <soap:address location="http://localhost:8080/axis/services/OpStyles"/>    </port>  </service></definitions>

⌨️ 快捷键说明

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