📄 complexinvoke.wsdl
字号:
<definitions targetNamespace="urn:complex:invocationService"
xmlns:tns="urn:complex:invocationService"
xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:typesns="http://www.ibm.com/namespace/wsif/samples/complexinvoke/types"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema targetNamespace="http://www.ibm.com/namespace/wsif/samples/complexinvoke/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="phone">
<xsd:element name="areaCode" type="xsd:int"/>
<xsd:element name="exchange" type="xsd:string"/>
<xsd:element name="number" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="contact">
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="phoneNumber" nillable="true" type="typesns:phone"/>
</xsd:complexType>
</xsd:schema>
</types>
<message name="request">
<part name="datain" type="typesns:contact"/>
</message>
<message name="response">
<part name="dataout" type="typesns:contact"/>
</message>
<portType name="invocationPT">
<operation name="invokeMe">
<input message="tns:request"/>
<output message="tns:response"/>
</operation>
</portType>
<plt:partnerLinkType name="invocationPLT">
<plt:role name="service">
<plt:portType name="tns:invokePT"/>
</plt:role>
</plt:partnerLinkType>
<!-- The service name and the TNS represent my service ID QName -->
<service name="invocationServiceBP">
<!-- the bindings etc. for this service will be generated by the
runtime; that is, the author of the WSBP does not have to write
those down. -->
</service>
</definitions>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -