SoapUI:箭头含义与方法名称相反的差异?

SoapUI: differences in arrow meaning opposite to method names?

与方法名称相反的箭头类型(单向 VS 双向)有何区别?它们在网络服务方面是什么意思?

好像是:

是吗?

更新: 根据@MichalBabich 的回答,我检查了 wsdl-file 并且存在相关性

一个方向箭头(单向操作):

    <wsdl:operation name="nmtoken">
       <wsdl:input name="nmtoken"? message="qname"/>
    </wsdl:operation>

双向箭头(请求-响应操作):

    <wsdl:operation name="nmtoken" parameterOrder="nmtokens">
       <wsdl:input name="nmtoken"? message="qname"/>
       <wsdl:output name="nmtoken"? message="qname"/>
       <wsdl:fault name="nmtoken" message="qname"/>*
    </wsdl:operation>

在这方面发现的很少,也许这个链接会有所帮助: https://lists.w3.org/Archives/Public/xml-dist-app/2006Mar/att-0037/one-way-MEP.htm

本页也有一些定义:https://www.w3.org/TR/wsdl#_porttypes

  • 单向。端点收到一条消息。
  • 请求-响应。端点接收消息,并发送相关消息。
  • 请求响应。端点发送消息,并接收相关消息。
  • 通知。端点发送消息。

此外,如果您双击您的界面(绿色箭头),您可能会看到操作及其状态