InterviewSolution
Saved Bookmarks
| 1. |
Name the web service method that is read-only, and is idempotent? |
|
Answer» The web service method that is read-only and SAFE is the GET method, and the web service methods that are IDEMPOTENT are PUT and DELETE operations. Idempotent REFERS to the operations whose results will always be the same even if these operations are INVOKED so many times. |
|