bookstoreenc.wsdl

来自「加密/解密webservice程序!」· WSDL 代码 · 共 41 行

WSDL
41
字号
<!-- (C) IBM Corporation 2004. All rights reserved. -->

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://www.onlinebookstore.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:bookstore="http://www.onlinebookstore.com" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <schema targetNamespace="http://www.onlinebookstore.com" xmlns="http://www.w3.org/2001/XMLSchema">
	    <element name="cardNumber" type="xsd:integer"/>
	    <element name="confirmationMessage" type="xsd:string"/>
    </schema>
  </wsdl:types>
  <wsdl:message name="creditCardRequest">
	  <wsdl:part name="creditCardNumber" element="bookstore:cardNumber"/>
  </wsdl:message>
  <wsdl:message name="creditCardResponse">
	  <wsdl:part name="cardDetailsCorrectlyReceived" element="bookstore:confirmationMessage"/>
  </wsdl:message>
  <wsdl:portType name="CreditCardPortType">
	  <wsdl:operation name="creditCardPurchase">
	    <wsdl:input message="bookstore:creditCardRequest"/>
	    <wsdl:output message="bookstore:creditCardResponse"/>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="CreditCardBinding" type="bookstore:CreditCardPortType">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="creditCardPurchase">
      <wsdlsoap:operation soapAction=""/>
      <wsdl:input>
        <wsdlsoap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
	<wsdlsoap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="CreditCardPurchaseService">
	  <wsdl:port name="CreditCardPurchase" binding="bookstore:CreditCardBinding">
		  <wsdlsoap:address location="http://localhost:9080/bookstoreEnc/services/CreditCardPurchase"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

⌨️ 快捷键说明

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