What are the various types of message exchange patterns available in WSDL?

Answered

What are the various types of message exchange patterns available in WSDL?

Ninja Asked on 18th September 2018 in Web Service.
Add Comment
1 Answer(s)
Best answer

Web Services support 4 types of operations:

a)    one-way – client sends the request to the service and no response is expected

b)    request response – client sends the request to the service and expects a response back

c)    solicit response – the service sends a request to the client and expects a response back

d)    notification – the service sends a request to the client and no response is expected

request response is the most commonly used operation for web services.

Ninja Answered on 18th September 2018.
Add Comment