Explain different HTTP methods supported by RESTful web services?
Enlisted below are some common HTTP methods along with their functions that are supported by RESTful web services. GET: Read-only access to the resource. PUT: Creation of new resource. DELETE: Removal of a resource. POST: Update of an existing resource. OPTIONS: Get supported operations on the resource. HEAD: Returns HTTP header only, nobody. In RESTful … Read more