InterviewSolution
Saved Bookmarks
| 1. |
What is the importance of URI in REST based web services? |
|
Answer» In REST-based WEB services, URI (UNIFORM Resource Locator) is generally used to locate resources on the server that is HOSTING the web service. Each resource in service will have at least one URI that is used to identify it. Web services CLIENTS generally USE URI to access the resource. Its format is given below: <protocol>://<service-name>/<ResourceType>/<ResourceID>
|
|