📄 loanbroker.wsdl
字号:
<?xml version="1.0" encoding="UTF-8"?><wsdl:definitions name="LoanBroker" targetNamespace="http://apache.org/loan_broker" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:jms="http://cxf.apache.org/transports/jms" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://apache.org/loan_broker" xmlns:x1="http://apache.org/loan_broker/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/types" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://apache.org/loan_broker/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:binding name="JMSLoanBrokerPortBinding" type="tns:LoanBroker"> <soap:binding style="document" transport="http://cxf.apache.org/transports/jms"/> <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="JMSLoanBrokerService"> <wsdl:port binding="tns:JMSLoanBrokerPortBinding" name="LoanBrokerPort"> <jms:address destinationStyle="queue" jndiConnectionFactoryName="ConnectionFactory" jndiDestinationName="dynamicQueues/test.cxf.jmstransport.queue"> <jms:JMSNamingProperty name="java.naming.factory.initial" value="org.apache.activemq.jndi.ActiveMQInitialContextFactory"/> <jms:JMSNamingProperty name="java.naming.provider.url" value="tcp://localhost:61616"/> </jms:address> </wsdl:port> </wsdl:service> </wsdl:definitions>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -