hello.wsdl
来自「ejb3 java session bean」· WSDL 代码 · 共 37 行
WSDL
37 行
<?xml version="1.0" encoding="UTF-8"?><definitions targetNamespace="http://jbpm.org/examples/hello" xmlns:tns="http://jbpm.org/examples/hello" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:plt="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns="http://schemas.xmlsoap.org/wsdl/"> <message name="greetingMessage"> <documentation>carries the greeting</documentation> <part name="greeting" type="xsd:string" /> </message> <message name="nameMessage"> <documentation>carries the name of a person</documentation> <part name="name" type="xsd:string" /> </message> <portType name="Greeter"> <documentation>describes the interface presented to callers</documentation> <operation name="sayHello"> <input message="tns:nameMessage" /> <output message="tns:greetingMessage" /> </operation> </portType> <plt:partnerLinkType name="Greeter-Caller"> <plt:documentation> characterizes the relationship between the greeter and its caller </plt:documentation> <plt:role name="Greeter" portType="tns:Greeter"> <plt:documentation> Caller does not provide services to Greeter, hence the "Caller" role is omitted </plt:documentation> </plt:role> </plt:partnerLinkType></definitions>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?