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

📄 helloworld.wsdl

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 WSDL
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -