?? listing 16-11.txt
字號(hào):
<?xml version="1.0"?>
<definitions name="pricing"
targetNamespace="http://mycompany.com/pricing.wsdl"
xmlns:tns="http://mycompany.com/pricing.wsdl"
xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"
xmlns:xsd1="http://mycompany.com/pricing.xsd"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<message name="ProductPricingInput">
<part name="ProductID" element="xsd:string"/>
</message>
<message name="ProductPricingOutput">
<part name="price" type="xsd:float"/>
</message>
<portType name="ProductPricePortType">
<operation name="GetProductPricing">
<input message="tns:GetProductPricingInput"/>
<output message="tns:GetProductPricingOutput"/>
</operation>
</portType>
<binding name="ProductPriceSoapBinding"
type="tns:ProductPricePortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="GetProductPrice">
<soap:operation soapAction="http://mycompany/GetProductPrice"/>
<input>
<soap:body use="encoded"
namespace="http://mycompany.com/pricing"
encodingStyle=
"http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded"
namespace="http://mycompany.com/pricing"
encodingStyle=
"http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="ProductPricingService">
<documentation>My first service</documentation>
<port name="ProductPricePort" binding="tns:ProductPriceBinding"
<soap:address location="http://mycompany.com/pricing"/>
</port>
</service>
</definitions>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -