Top "Put" questions

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

hadoop fs -put command

I have constructed a single-node Hadoop environment on CentOS using the Cloudera CDH repository. When I want to copy a …

shell hadoop hdfs put
How to implement a PUT call with JSON data using AJAX and JQuery?

I've looked around and tried many different methods, but can't seem to pass actual data to my controller's function. Here …

jquery ajax json put
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, …

java dictionary get null put
Spring/RestTemplate - PUT entity to server

Please look at this simple code: final String url = String.format("%s/api/shop", Global.webserviceUrl); RestTemplate restTemplate = new RestTemplate(); …

java json spring put resttemplate
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 …

php curl put
REST - Shouldn't PUT = Create and POST = Update

Shouldn't PUT be used to Create and POST used to Update since PUT is idempotent. That way multiple PUTs for …

api rest post put
How to get hadoop put to create directories if they don't exist

I have been using Cloudera's hadoop (0.20.2). With this version, if I put a file into the file system, but the …

hadoop hdfs cloudera put biginsights
How are PUT parameters passed to a page?

I can't find a precise answer on that question : Are parameters which are sent by PUT passed in the URL, …

http protocols put
How do I allow a PUT file request on Nginx server?

I am using an application which needs to PUT a file on a HTTP server. I am using Nginx as …

http nginx put
Getting "411 Length Required" after a PUT request from HTTP Client

I am working on a Java program that implements an HTTP Client. I test it sending requests to a server. …

java http rest put content-length