📄 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 + -