importinterface.wsdl

来自「Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应」· WSDL 代码 · 共 43 行

WSDL
43
字号
<definitions name="ImportTestDefinition"  targetNamespace="http://test.globus.org/interface"  xmlns:tns="http://test.globus.org/interface"  xmlns:types="http://test.globus.org/types"  xmlns:bigType="http://test.globus.org/bigType"  xmlns="http://schemas.xmlsoap.org/wsdl/"  xmlns:xsd="http://www.w3.org/2001/XMLSchema"  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"><import namespace="http://test.globus.org/bigType"        location="../../types1/types2/importtypes.wsdl"/><message name="sendStringRequest">  <part name="myInput" type="types:StringType"/>  <part name="myBigInput" type="bigType:BigType"/></message><message name="sendStringResponse"/><portType name="ImportTestPortType">  <operation name="sendString">    <input message="tns:sendStringRequest"/>    <output message="tns:sendStringResponse"/>  </operation></portType><binding name="ImportTestSOAPBinding" type="tns:ImportTestPortType">  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>  <operation name="sendString">    <soap:operation soapAction="http://test.globus.org/importtest#sendString"/>    <input>      <soap:body use="encoded" namespace="http://test.globus.org/importtest"                                encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>    </input>    <output>      <soap:body use="encoded" namespace="http://test.globus.org/importtest"                                encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>    </output>  </operation></binding></definitions>

⌨️ 快捷键说明

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