Login
Remember
Register
Ask a Question
What are the steps involved in accessing a web service?
0
votes
asked
Sep 25, 2023
in
Web Service
by
Robin
What are the steps involved in accessing a web service?
accessingwebservice
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 25, 2023
by
Robin
These are the steps involved in accessing a web service:
Client application bundled the information and into a SOAP message.
SOAP message sends to the server as a body of Hyper-Text markup language using POST method.
Web service unpacks the SOAP message and converts it into a command understandable by the application.
Application processes the information and in turn bundled the info and send it back to the client as a SOAP message.
A Client then unpacks the SOAP message to obtain the results.
...