?? listing 16-10.txt
字號:
<?xml version="1.0"?>
<definitions name="pricing" targetNamespace=
"http://mycompany.com/pricing.wsdl"
xmlns:tns="http://mycompany.com/pricing.wsdl"
xmlns:xsd1="http://mycompany.com/pricing.xsd"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<message name="ProductPricing">
<part name="body" element="xsd1:ProductPricing"/>
<part name="productheader" element="xsd1:ProductHeader"/>
</message>
<portType name="ProductPricePortType">
<operation name="GetProductPricing">
<input message="tns:GetProductPricingInput"/>
</operation>
</portType>
<binding name="ProductPriceSoapBinding"
type="tns:ProductPricePortType">
<soap:binding style="document"
transport="http://mycompany.com/smtp"/>
<operation name="GetProductPricing">
<input message="tns:GetProductPricing">
<soap:body parts="body" use="literal"/>
<soap:header message="tns:GetProductPricing"
part="productheader" use="literal"/>
</input>
</operation>
</binding>
<service name="ProductPricingService">
<port name="ProductPricingPort"
binding="tns:ProductPricingSoap">
<soap:address location="mailto:customer@mycompany.com"/>
</port>
</service>
<types>
<schema targetNamespace="http://mycompany.com/ProductPrice.xsd"
xmlns="http://www.w3.org/2000/10/XMLSchema">
<element name="ProductPrice">
<complexType>
<all>
<element name="ProductID" type="string"/>
</all>
</complexType>
</element>
<element name="ProductPriceHeader" type="uriReference"/>
</schema>
</types>
</definitions>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -