About 6,370,000 results
Open links in new tab
  1. What is the difference between POST and PUT in HTTP?

    PUT is used by FB to update the comment because an existing resource is being updated, and that is what PUT does (updates a resource). PUT happens to be idempotent, in contrast to …

  2. ASP.NET Web API returns 404 for PUT only on some servers

    Apr 11, 2012 · I have written a site that uses ASP.NET MVC Web API and everything is working nicely until I put it on the staging server. The site works fine on my local machine and on the …

  3. Should a RESTful 'PUT' operation return something....

    Apr 28, 2009 · I was wondering what people's opinions are of a RESTful PUT operation that returns nothing (null) in the response body.

  4. Is an HTTP PUT request required to include a body?

    Nov 7, 2018 · What is being PUT (in the verb sense) onto the server if there's no content? The spec refers to the content as "the enclosed entity", but a request with no content would have …

  5. What is the usefulness of PUT and DELETE HTTP request methods?

    Aug 27, 2012 · PUT is for putting or updating a resource on the server: The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers …

  6. java - Does "put" overwrite existing values? - Stack Overflow

    Aug 27, 2011 · Does "put" overwrite existing values? Asked 14 years, 2 months ago Modified 8 years, 3 months ago Viewed 127k times

  7. REST API Best practices: Where to put parameters? [closed]

    Oct 26, 2010 · If there are documented best practices, I have not found them yet. However, here are a few guidelines I use when determining where to put parameters in an url: Optional …

  8. Use of PUT vs PATCH methods in REST API real life scenarios

    Since PUT requests include the entire entity, if you issue the same request repeatedly, it should always have the same outcome (the data you sent is now the entire data of the entity). …

  9. "405 method not allowed" in IIS7.5 for "PUT" method

    May 27, 2011 · 6 Another tip from me. I have used PHP + IIS, and the Handler Mappings for PHP did not have the PUT verb. Go to IIS Manager->Your site->Handler Mappings …

  10. curl - Test file upload using HTTP PUT method - Stack Overflow

    Feb 22, 2015 · I've written a service using HTTP PUT method for uploading a file. Web Browsers don't support PUT so I need a method for testing. It works great as a POST hitting it from a …