Tagged Questions
The put tag has no wiki summary.
286
votes
11answers
78k views
PUT vs POST in REST
According to the HTTP/1.1 Spec:
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the ...
50
votes
8answers
11k views
Is there any way to do HTTP PUT in python
I need to upload some data to a server using HTTP PUT in python. From my brief reading of the urllib2 docs, it only does HTTP POST. Is there any way to do an HTTP PUT in python?
37
votes
10answers
30k views
How do you do an HTTP Put?
I feel like an idiot asking this. In fact, after typing the title, StackOverflow barks at me, "That's not a very good title. Can you add some more unique words to it?" No I can't, SO; sorry. Here we ...
16
votes
3answers
25k views
How to send PUT, DELETE HTTP request in HttpURLConnection? Looks like not working
I want to know if it is possible to send PUT, DELETE request (practically) through java.net.HttpURLConnection to HTTP-based URL. I have read so many articles describing that how to send GET, POST, ...
14
votes
2answers
9k views
RAW POST using Curl in PHP
How can I do a RAW POST in PHP using curl. Raw post as in without any encoding, and my data is stored in a string. The data should be formatted like this
... usual HTTP header ...
Content-Length: ...
14
votes
8answers
2k views
Should a RESTful 'PUT' operation return something
I was wondering what peoples opinions are of a RESTful 'PUT' operation that returns nothing(null) in the response body?
8
votes
2answers
163 views
RESTful API design: should unchangable data in an update (PUT) be optional?
I'm in the middle of implementing a RESTful API, and I am unsure about the 'community accepted' behavior for the presence of data that can not change. For example, in my API there is a 'file' resource ...
7
votes
2answers
722 views
POSIX error 12 (“Cannot allocate memory”) while uploading files from an iPhone
I'm working on an iPhone application that involves uploading full photos from the camera (generally between 1.5 to 2.0 MB each) as well as their thumbnails (much smaller) to Amazon S3.
The thumbnails ...
7
votes
2answers
2k views
WCF REST service hosted in IIS does not support PUT and DELETE
I created a WCF REST (aka WebHttp) service in .NET 4, using Microsoft's WCF REST Service Template 40. I am hosting the service in IIS 6.
The Service Template uses the RouteTable in the Global.asax as ...
6
votes
4answers
47 views
CharBuffer.put() didn't working
I try to put some strings to CharBuffer with CharBuffer.put() function
but the buffer is left blank.
my code:
CharBuffer charBuf = CharBuffer.allocate(1000);
for (int i = 0; i < 10; i++)
{
...
6
votes
2answers
1k views
Ruby: PUT Request with JSON body?
I need to create an HTTP PUT request using ruby.
The request has a JSON body
I was able to generate the JSON body using:
require 'rubygems'
require 'json'
jsonbody = ...
6
votes
3answers
1k views
Sending binary data with the Restlet client
I'm trying to send a byte[] (using PUT) with Restlet but I can't find any info on how to do it. My code looks like this:
Request request = new Request(Method.PUT, url);
request.setEntity( WHAT DO I ...
5
votes
2answers
708 views
How can I use “puts” to the console without a line break in ruby on rails?
I have a method which goes through a loop -- I want it to output a "." each loop so I can see it in the console. however, it pus a linebreak at the end of each when I use puts ".".
If there a way so ...
4
votes
2answers
145 views
Where do I put the links to my Javascript/jQuery files in my html file?
I recently noticed that some (not all) of my javascript and jQuery scripts wouldn't work unless I put the link for the .js files nearer towards the bottom of the page instead of the head area where I ...
4
votes
3answers
1k views
What REST PUT/POST/DELETE calls should return by a convention
According to the "REST ideology" what should be in the response body for a PUT/POST/DELETE requests?
What about return codes?
Is HTTP_OK enough?
What is the reason for such conventions, if any? :)
...
4
votes
2answers
1k views
X-HTTP-Method-Override in jQuery?
How can I do an X-HTTP-Method-Override for an ajax request in jQuery?
3
votes
3answers
79 views
In HTTP, does PUT and POST send data differently?
From what I know you can send JSON data via POST, but should PUT be specifically sending information in the URI or can you do both?
Thanks!
3
votes
2answers
71 views
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?id=projectId
I tried doing this with PHP curl, but I'm not getting a response from the ...
3
votes
4answers
106 views
Java map.get(key) - automatically do put(key) and return if key doesn't exist?
I am sick of the following pattern:
value = map.get(key);
if (value == null) {
value = new Object();
map.put(key, value);
}
You might say 'oh come on, it's not that much effort and is good ...
3
votes
1answer
80 views
Why doesn't objectify's put() function throw exception?
GAE native put() function throws some exceptions, when it failed.
But Objectify's put() function never throws any exception, as it is stated in Objectify JAVADOC.
Here is my question.
If ...
3
votes
4answers
225 views
Oracle PL/SQL UTL_FILE.PUT buffering
I'm writing a large file > 7MB from an Oracle stored procedure and the requirements are to have no line termination characters (no carriage return/line feed) at the end of each record.
I've written a ...
3
votes
2answers
5k views
Using PUT method with PHP cUrl Library
I'm able to run the following curl command (at the command line) successfully:
curl -XPOST --basic -u user:password -H accept:application/json -H Content-type:application/json --data-binary '{ ...
2
votes
0answers
129 views
Clojure Noir Json Put
I'm working through the tutorial Mark McGranaghan REST Tutorial however I'm trying to do it using Noir instead.
I can add new items, however it never takes the body of the PUT command.
I think the ...
2
votes
2answers
107 views
Put message async on WebSphere MQ queue
I am trying to put persistent messages onto a WebSphere MQ queue, however these need to be async puts. The only way that I seem to be able to get async working is if the messages are non persistent ...
2
votes
3answers
95 views
Java Hashtable put method slow down my application
I need to do :
Dictionary cache;
cache = new Hashtable();
this.getDocument().putProperty("imageCache", cache);
Then I have a method who does :
cache.put(url, picture);
Where picture is an Image ...
2
votes
1answer
124 views
ajax put is returning 500 internal server error
I'm using django tastypie to implement a REST api but am running into a problem i can't figure out:
When I run a curl
curl -H "Content-Type: application/json" -X PUT --data '{"title": "my video", ...
2
votes
1answer
45 views
What are the technical differences between PUT and POST?
Leaving aside semantics, meanings, proper and common use cases of PUT and POST (which had been already discussed many times (e.g. here)), what are the technical differences (the way what and how is ...
2
votes
1answer
27 views
Berkley issues updating data to new value using a hash config
I am trying to write a program that uses a Berkeley Database and i configured my database as followed :
DatabaseConfig dbConfig = new DatabaseConfig();
dbConfig.setType(DatabaseType.HASH);
...
2
votes
3answers
195 views
Re-factoring a CURL request to Ruby's RestClient
I'm having trouble translating this CURL request into Ruby using RestClient:
system("curl --digest -u #{@user}:#{@pass} '#{@endpoint}/#{id}' --form image_file=@'#{path}' -X PUT")
I keep getting 400 ...
2
votes
1answer
80 views
Creating a WCF PUT Rest service
I have a simple REST web service in WCF that is declared as follows:
[WebInvoke(Method = "PUT",UriTemplate = "comptatge/add",RequestFormat = WebMessageFormat.Json,ResponseFormat = ...
2
votes
4answers
69 views
Are PUT and POST requests required/expected to have a request body?
I'm writting a RESTful api, and at I'm thinking about the process of a user creating a key. I have the following possibilities:
GET request to /new/<keyname> - although it's very easy I ...
2
votes
1answer
278 views
Lift REST service not recognizing PUT request
I'm implementing a REST service with the Lift web framework in Scala and I'm having some issues with the PUT request to create a new entity for which I know the ID.
Already added the dispatch to ...
2
votes
2answers
86 views
No file creation/modified date when a file created using HTTP PUT in java/Android
I am developing an app for android that reads/write to a wireless device using HTTP PUT.
Is there a way to set the creation/modified date & time attribute of a file being created by HTTP PUT ...
2
votes
1answer
100 views
REST - GET returns different result than POST/PUT
In our project, a book can be added by sending the book structure (in XML, JSON, ..) via a POST or PUT request. For example, in XML, the book structure looks like this (simplified):
<book>
...
2
votes
2answers
827 views
PUT vs. POST for files upload RESTful api to be built using Zend Framework
I'm building a RESTful api using Zend Framework via the Zend_Rest_Route. For files upload, should I use PUT or POST to handle the process? I'm trying to be as consistent as possible with the ...
2
votes
1answer
457 views
Upload a file using an API PUT request
I'm building an API in PHP. One of the methods is place.new (PUT request). It expects several string fields, and it also expects an image. However I can't get it working. With a POST request it was ...
2
votes
1answer
362 views
PUT and DELETE getting 404 in WCF REST service .net 4 when running in IIS 6.0
I've added the wildcard application mapping for c:\windows\microsoft.net\framework\v4.0.30319\aspnet_isapi.dll and unchecked the "verify that file exist" checkbox. This gives me GET and POST ability ...
2
votes
1answer
184 views
Android Intents - putExtra, what happens with multiple occurances?
Let's say that I'm using an intent to get info back to the main class that called the current activity.
What would happen if say, I had two methods that might overlap the same field, like:
...
2
votes
3answers
373 views
should I use PUT method for update, if I also update a timestamp attribute
To be more precise:
According to rest style, it's generally assummed that POST, GET, PUT, and DELETE http methods should be used for CREATE, READ, UPDATE and DELETE (CRUD) operations.
In fact, if we ...
2
votes
3answers
758 views
How to upload a file using an HTTP “PUT” using JQuery?
I would like to upload a file using JQuery-File-Upload, but using HTTP "PUT" instead of multipart-forms. According to their site:
- Multipart and file contents stream uploads:
Files can be ...
2
votes
2answers
525 views
Making a REST API request in PHP
Apologies for newbishness of this question. I'm looking into integrating one website's API into my own website. Here's some quotes from their documentation:
At the moment we only support XML,
...
2
votes
2answers
948 views
Test file upload using HTTP PUT method
I've written a service in Spring using HTTP PUT method for uploading a file. I developed it using POST but my requirement is it be PUT. It seems the only real difference from a coding perspective is ...
2
votes
1answer
1k views
PHP cURL HTTP PUT
I am trying to create a HTTP PUT request with cURL and I can't make it work. I ready many tutorials but none of them acutally worked. Here's my current code:
$filedata = array('metadata' => ...
2
votes
1answer
811 views
link_to update (without form)
I want a link to update a resource without compiling the form.
Can I do it ? In witch way ?
I'll let you understand better by pasting my situation"
Routes :
resources :users do
resource :profile, ...
2
votes
3answers
198 views
Partially updating complex types in a RESTful Service
I am using JSON with RESTful service. Implementation is like this.
GET on http://hostname/a returns
{
"a": {
"b": {
"c1": "data1",
"c2": "data2"
}
}
...
2
votes
1answer
448 views
PUT parameters not working in python / google app engine
i'm working on a simple RESTful webservice with python with the webapp framework on the google app engine.
Basically i'm sending all request via AJAX/jquery - for POST it works like a charm, but ...
2
votes
4answers
618 views
What is the syntax for adding an element to a scala.collection.mutable.Map?
What is the syntax for adding an element to a scala.collection.mutable.Map ?
Here are some failed attempts:
val map = scala.collection.mutable.Map
map("mykey") = "myval"
map += "mykey" -> ...
2
votes
2answers
931 views
HTTP POST vs HTTP PUT
Does HTTP PUT have advantages over HTTP POST, particularly for File Uploads? Data transfer should be highly secure.. Your ideas / guidance on this will be of great help.
regards,
Kingsley Reuben
2
votes
6answers
5k views
How to implement recursive put in sftp
Command-line sftp in my Ubuntu doesn't have recursive put implemented. I found some debate from 2004 about implementing such feature with -R option switch. So I see some sort of self-made recursion as ...
2
votes
4answers
326 views
using HTTP PUT, but not fully replace the entity
I'm developing a REST api, and I'm wondering the following:
I want to use HTTP PUT to update some entities in the webservice. The format will be a urlencoded body. Is it acceptable to only update the ...