InterviewSolution
| 1. |
What Are The Communication Channels Available For A Web Service? |
|
Answer» In general, web service is combined with the following PROTOCOLS:
While exposing the web services, these channels will be used for communication with the clients. Here HTTP / POST protocol transfers the information between the clients with secure mode. HTTP / GET protocol allows the clients to VIEW transferred data partially at the BROWSER’s ADDRESS bar. SOAP is used for transferring the CONFIDENTIAL data safely. In general, web service is combined with the following protocols: While exposing the web services, these channels will be used for communication with the clients. Here HTTP / POST protocol transfers the information between the clients with secure mode. HTTP / GET protocol allows the clients to view transferred data partially at the browser’s address bar. SOAP is used for transferring the confidential data safely. |
|