InterviewSolution
Saved Bookmarks
| 1. |
Explain Idempotent Methods And Web Applications? |
|
Answer» Methods PUT and DELETE are defined to be idempotent, meaning that multiple identical requests should have the same EFFECT as a single request. Methods GET, HEAD, OPTIONS and TRACE, being PRESCRIBED as safe, should also be idempotent, as HTTP is a STATELESS protocol. Methods PUT and DELETE are defined to be idempotent, meaning that multiple identical requests should have the same effect as a single request. Methods GET, HEAD, OPTIONS and TRACE, being prescribed as safe, should also be idempotent, as HTTP is a stateless protocol. |
|