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

📄 loanbroker.wsdl

📁 基于eclipse环境下开发的cxf例程
💻 WSDL
字号:
<?xml version="1.0" encoding="UTF-8"?><!--  Licensed to the Apache Software Foundation (ASF) under one  or more contributor license agreements. See the NOTICE file  distributed with this work for additional information  regarding copyright ownership. The ASF licenses this file  to you under the Apache License, Version 2.0 (the  "License"); you may not use this file except in compliance  with the License. You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing,  software distributed under the License is distributed on an  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY  KIND, either express or implied. See the License for the  specific language governing permissions and limitations  under the License.--><wsdl:definitions name="LoanBroker" targetNamespace="http://apache.org/loan_broker_soap_http"     xmlns="http://schemas.xmlsoap.org/wsdl/"     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"     xmlns:tns="http://apache.org/loan_broker_soap_http"    xmlns:x1="http://apache.org/loan_broker_soap_http/types"    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"     xmlns:xsd="http://www.w3.org/2001/XMLSchema">    <wsdl:types>        <schema targetNamespace="http://apache.org/loan_broker_soap_http/types"             xmlns="http://www.w3.org/2001/XMLSchema"	    xmlns:tns="http://apache.org/loan_broker_soap_http/types"            elementFormDefault="qualified">	    <simpleType name="MyStringType">		<restriction base="string">		    <maxLength value="30" />		</restriction>	    </simpleType>            <element name="getLoanQuote">                <complexType>                    <sequence>                        <element name="name" type="tns:MyStringType"/>                    </sequence>                </complexType>            </element>            <element name="getLoanQuoteResponse">                <complexType>                    <sequence>                        <element name="returnType" type="tns:Quote"/>                    </sequence>                </complexType>            </element>                            <complexType name="Quote">                    <sequence>                        <element name="rate" type="double"/>                        <element name="firstpaidratio" type="double"/>                    </sequence>                </complexType>        </schema>    </wsdl:types>    <wsdl:message name="getLoanQuoteRequest">        <wsdl:part element="x1:getLoanQuote" name="in"/>    </wsdl:message>    <wsdl:message name="getLoanQuoteResponse">        <wsdl:part element="x1:getLoanQuoteResponse" name="out"/>    </wsdl:message>        <wsdl:portType name="LoanBroker">        <wsdl:operation name="getLoanQuote">            <wsdl:input message="tns:getLoanQuoteRequest" name="getLoanQuoteRequest"/>            <wsdl:output message="tns:getLoanQuoteResponse" name="getLoanQuoteResponse"/>        </wsdl:operation>    </wsdl:portType>        <wsdl:binding name="LoanBroker_SOAPBinding" type="tns:LoanBroker">        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>                <wsdl:operation name="getLoanQuote">            <soap:operation soapAction="" style="document"/>            <wsdl:input name="getLoanQuoteRequest">                <soap:body use="literal"/>            </wsdl:input>            <wsdl:output name="getLoanQuoteResponse">                <soap:body use="literal"/>            </wsdl:output>        </wsdl:operation>    </wsdl:binding>        <wsdl:service name="SOAPService">        <wsdl:port binding="tns:LoanBroker_SOAPBinding" name="SoapPort">            <soap:address location="http://localhost:9000/SoapContext/SoapPort"/>        </wsdl:port>    </wsdl:service></wsdl:definitions>

⌨️ 快捷键说明

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