helloworld.wsdl

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

WSDL
52
字号
<?xml version="1.0" encoding="UTF-8"?><wsdl:definitions    xmlns:tns="http://helloworld.ch/schema/service"    xmlns:types="http://helloworld.ch/schema/types"    xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"    targetNamespace="http://helloworld.ch/schema/service"    name="SalaryDeclarationService">    <wsdl:types>        <xs:schema            targetNamespace="http://helloworld.ch/schema/types"            xmlns:xs="http://www.w3.org/2001/XMLSchema"            elementFormDefault="qualified" attributeFormDefault="unqualified">            <xs:include schemaLocation="./helloworld.xsd"/>        </xs:schema>    </wsdl:types>    <wsdl:message name="HelloWorldRequest">        <wsdl:part name="body" element="types:MyRequest"/>    </wsdl:message>    <wsdl:message name="HelloWorldResponse">        <wsdl:part name="body" element="types:MyResponse"/>    </wsdl:message>    <wsdl:portType name="MyPort">        <wsdl:operation name="HelloWorld">            <wsdl:input message="tns:HelloWorldRequest"/>            <wsdl:output message="tns:HelloWorldResponse"/>        </wsdl:operation>    </wsdl:portType>    <wsdl:binding name="MySOAPBinding" type="tns:MyPort">        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>        <wsdl:operation name="HelloWorld">            <soap:operation style="document"/>            <wsdl:input>                <soap:body use="literal"/>            </wsdl:input>            <wsdl:output>                <soap:body use="literal"/>            </wsdl:output>        </wsdl:operation>    </wsdl:binding>    <wsdl:service name="MyService">        <wsdl:port name="HelloWorld" binding="tns:MySOAPBinding">            <soap:address location="http://localhost:8080/axis/services/HelloWorld"/>        </wsdl:port>    </wsdl:service></wsdl:definitions>

⌨️ 快捷键说明

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