SoapUI: differences in arrow meaning opposite to method names? -
what difference in arrow types (one direction vs bi-directional) opposite method names? mean in terms of web-services?
seems like:
- one direction - there should not responce
- bi-directional - responce expected
is so?
update: according answer of @michalbabich have checked wsdl-file
, there correlation
one direction arrow (one-way operation):
<wsdl:operation name="nmtoken"> <wsdl:input name="nmtoken"? message="qname"/> </wsdl:operation>
bi-directional arrow (request-response 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>
found surprisingly little on this, maybe links help: https://lists.w3.org/archives/public/xml-dist-app/2006mar/att-0037/one-way-mep.htm
also there definitions on page: https://www.w3.org/tr/wsdl#_porttypes
- one-way. endpoint receives message.
- request-response. endpoint receives message, , sends correlated message.
- solicit-response. endpoint sends message, , receives correlated message.
- notification. endpoint sends message.
also if double click interface (green arrows) may see operations , status
Comments
Post a Comment