listing 16-2.txt
来自「这是JAVA开发大全的源代码」· 文本 代码 · 共 23 行
TXT
23 行
<?xml version="1.0"?>
<definitions name="Pricing"
targetNamespace="http://mycompany.com/pricing/definitions"
xmlns:tns="http://mycompany.com/pricing/definitions"
xmlns:xsd1="http://mycompany.com/pricing/schemas"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<import namespace="http://mycompany.com/pricing/schemas"
location="http://mycompany.com/pricing/pricing.xsd"/>
<message name="GetProductPriceInput">
<part name="body" element="xsd1:ProductPriceRequest"/>
</message>
<message name="GetProductPriceOutput">
<part name="body" element="xsd1:ProductPrice"/>
</message>
<portType name="ProductPricePortType">
<operation name="GetProductPrice">
<input message="tns:GetProductPriceInput"/>
<output message="tns:GetProductPriceOutput"/>
</operation>
</portType>
</definitions>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?