hello.wsdl

来自「ejb3 java session bean」· WSDL 代码 · 共 34 行

WSDL
34
字号
<?xml version="1.0" encoding="UTF-8"?><definitions targetNamespace="http://jbpm.org/examples/hello"  xmlns:tns="http://jbpm.org/examples/hello"  xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"  xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/">  <!-- carries the name of a person -->  <message name="nameMessage">    <part name="name" type="xsd:string" />  </message>  <!-- carries the greeting -->  <message name="greetingMessage">    <part name="greeting" type="xsd:string" />  </message>  <!-- describes the interface presented to callers -->  <portType name="Greeter">    <operation name="sayHello">      <input message="tns:nameMessage" />      <output message="tns:greetingMessage" />    </operation>  </portType>  <!-- characterizes the relationship between the greeter and its caller -->  <plt:partnerLinkType name="Greeter-Caller">    <plt:role name="Greeter">      <plt:portType name="tns:Greeter" />    </plt:role>    <!-- the Caller does not provide services to the Greeter,      this is why we omit the "Caller" role -->  </plt:partnerLinkType></definitions>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?