loanassessor.wsdl

来自「Eclipse的插件」· WSDL 代码 · 共 49 行

WSDL
49
字号
<definitions targetNamespace="http://tempuri.org/services/loanassessor"
             xmlns:tns="http://tempuri.org/services/loanassessor"
             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:loandef="http://tempuri.org/services/loandefinitions"   
             xmlns="http://schemas.xmlsoap.org/wsdl/">

            
  <import namespace="http://tempuri.org/services/loandefinitions" 
          location="http://localhost:9080/bpws4j-samples/loanapproval/loandefinitions.wsdl"/>

  <message name="riskAssessmentMessage">
    <part name="risk" type="xsd:string"/>
  </message>   

  <portType name="riskAssessmentPT">
    <operation name="check">
      <input message="loandef:creditInformationMessage"/>
      <output message="tns:riskAssessmentMessage"/>
      <fault name="loanProcessFault" 
             message="loandef:loanRequestErrorMessage"/>
    </operation>
  </portType>

  <binding name="SOAPBinding" type="tns:riskAssessmentPT">
    <soap:binding style="rpc" 
                  transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="check">
      <soap:operation soapAction="" style="rpc"/>
      <input>
         <soap:body use="encoded" namespace="urn:loanassessor"
               encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
       </input>
       <output>
         <soap:body use="encoded" namespace="urn:loanassessor"
                 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
       </output>
      </operation>
   </binding>

   <service name="LoanAssessor">
     <documentation>Loan Assessor Service</documentation>
     <port name="SOAPPort" binding="tns:SOAPBinding">
       <soap:address location="http://localhost:9080/bpws4j-samples/servlet/rpcrouter"/>
     </port>
   </service>

</definitions>

⌨️ 快捷键说明

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