I was reading about message exchange patterns (MEP) in web services.
I came across a pattern called Solicit Response
.
I googled it but did not find much information about it and its usage.
Can anyone give me the details about this and its usage scenarios.
Thanks in advance.
A solicit/response operation is an operation in which the service endpoint sends a message and expects to receive an answering message in response.
An example of this operation might be a service that sends out order status to a client and receives back a receipt.
The solicit-response operation includes one output
element, which is the server's request to the client, followed by one input
element, which is the client's response back to the server.
Figure: The Solicit-response message pattern
Sample WSDL operation type for solict/response. This operation consists of one output
message and one input
message.
<operation name="weatherUpdateRenew">
<output message="tns:RenewRequest"/>
<input message="tns:RenewResponse"/>
</operation>
Source
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With