Top "Put" questions

PUT is a HTTP method which requests that the enclosed entity be stored under the supplied URL.

How do I execute an HTTP PUT in bash?

I'm sending requests to a third-party API. It says I must send an HTTP PUT to http://example.com/project?…

bash put
PUT method (RESTful) doesn't work as a way to update resources

According to this article(http://restcookbook.com/HTTP%20Methods/put-vs-post/), PUT is supposed to work as a method to update …

java rest jax-rs put http-method
How to send binary data via JQuery Ajax PUT method

I am new to JQuery and I want to use JQuery Ajax to upload some files to server, Only in …

jquery ajax upload binaryfiles put
Can iOS devices send PUT requests to Rails apps?

We've tried numerous times sending update PUT requests to our Rails server and we keep receiving a 404 "The page you …

objective-c ruby-on-rails ios nsurlconnection put
Get PUT params with Slim PHP

I searched, but I didn't find an answer. I have a RESTful API to manage a basic CRUD. I'm trying …

php rest put restful-url slim
Difference between put(...) and append(...) for a SparseArray?

I just want to know what is the difference between put(...) and append(...) for a SparseArray ? From the official documentation : …

android append put
RESTful Soft Delete

I'm trying to build a RESTful webapp wherein I utilize GET, POST, PUT, and DELETE. But I had a question …

rest put
Enabling PUT on IIS 7.5 for an ASHX handler using Windows Authentication

I have an ASP.NET (.NET 4) website that uses http PUT for an .ashx generic handler. The PUT call originates …

iis-7 iis-7.5 windows-authentication put
How to upload files using PUT instead of POST with PHP

I'm building my first REST Api and it's going well so far, i'm just having an issue with files uploads …

php rest put http-put
Should HTTP PUT create a resource if it does not exist?

Lets suppose that someone performs a PUT request on my endoint: /resources/{id} However there is not resource with the …

rest http put