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

learn more… | top users | synonyms

0
votes
0answers
12 views

Form boundaries and writing php://input to a file in php

So I want users to be able to upload big files without having to worry about the post max size values. The alternative is using PUT and send a file as raw data. When using jquery I can do this: var ...
0
votes
1answer
31 views

PUT requests seem to always route to get in Rails

I'm trying to run some tests via rspec, and I keep getting errors for the traffic not being rerouted. It specifically happens on PUT and DELETE requests. I'm not getting a routing error, the error ...
0
votes
1answer
20 views

How can I correctly send data through 'PUT' with ajax in the request body like Backbone does

I noticed that when saving data along with an id in backbone what it does is to send a 'PUT' request along with the data inside the request body ( in chrome dev tools appears as "request payload"). ...
0
votes
1answer
18 views

java httpurlconnection http put error 400

I took the HTTP PUT code pretty much verbatim from this example from stackoverflow -- I am attempting to place an XML file into an ExistDB rest interface but I receive "400 Bad Request" values from ...
1
vote
2answers
36 views

PUT request to django tastypie resource not working

i'm trying to do a put request to my django tastypie resource in order to update user info. Up to now, i can make post request but put is not working. In my api.py i have this: class ...
0
votes
0answers
26 views

Why HTTP PUT instead of HTTP POST? [duplicate]

Conventionally why HTTP PUT should be used to update or modify objects instead of HTTP POST ? Since HTTP POST can do the same funtionality which HTTP PUT does, what is the significant importance of ...
1
vote
1answer
39 views

PUT calls with Breeze.js

I was looking at Breeze.js and was interested in using it with services that we have in production. The services are already working and cannot be changed. The question I had was if it is possible ...
0
votes
0answers
14 views

easyxdm Put giving a 400 Bad request Error

I'm facing a problem with PUT request when using easyXDM. Other Operations such as POST, DELETE works fine. Initially it was placing data in query string. Tried following another post: easyXDM PUT ...
2
votes
1answer
50 views

Slim PUT returns NULL

I have a problem with the Slim Framework and a PUT request. I have a litte jQuery script that that will update an expiry time when a button is clicked. $("#expiry-button").click(function(event) { ...
0
votes
0answers
21 views

rspec + factory_girl + mongoid model: update spec instance.should_receive(:update_attributes).with(hash).and_return(false) failing

From Gemfile: gem "rails", "= 3.2.12" group :test do gem "database_cleaner", "~> 0.7.2" gem "factory_girl_rails", "~> 4.1.0", require: false gem "ffaker", "~> ...
0
votes
0answers
32 views

RestSharp OAuth Put Request with Parameter

I am using the RestSharp OAuth in a Project to connect with the XING API. All requests Post, Get, Put, Delete etc working well, but now i have to do a Put Request with a Parameter as described here ...
0
votes
1answer
31 views

Ajax PUT dataType issue

Hey guys im having a stupid problem with ajax PUT, after i try put the json data back the server thinks its xml data even though i use: dataType: "application/json", any idea why this may he ...
0
votes
0answers
10 views

Google Cloud Storage Move files/objects from one bucket to another using API

I have been trying to move files/objects from one bucket to another using "PUT" or "POST" method. would like to know if it is actually possible? I know we can achieve this with "gsutil mv" but I am ...
0
votes
1answer
33 views

What's the correct use of RKObjectManager for PUT?

I'm working with an API which allows updating of objects with PUT requests - with the following format (w/ curl): curl --request PUT -u <api_key>: <api_url> \ -d "attribute=newvalue" ...
0
votes
1answer
34 views

HTTP PUT method in PHP: separating files from form data

When a file is uploaded via POST, the form data is separated out from the file(s) via the $_POST and $_FILES variables (respectively). On the other hand, when a file is uploaded via PUT, the response ...
1
vote
1answer
40 views

django-rest-framework PUT rewriting read-only slug field

First of all, I am overriding my view's get_object() method in order to URL-decode the slug value (URL-encoding is needed because the value contains slashes): class ...
2
votes
1answer
35 views

HTTP PUT, DELETE and I/O streams with PHP

Is there any way I can access data that was sent via HTTP PUT method other than $putdata = fopen("php://input", "r");? I have never worked with PUT and DELETE methods and $putdata = ...
0
votes
1answer
33 views

Issue with Model driven in struts for a PUT request?

I'm making a PUT request with Content-Type as application/x-www-form-urlencoded. I'm not able to map the form body elements to my modeldriven action class (User). Here is a sample request: PUT: ...
0
votes
0answers
22 views

Enable PUT and DELETE on MAMP for OSX

I'm working on an PHP API with help of the Slim framework. It seems like MAMP isn't allowing me to send PUT/DELETE requests. Also php://input is always empty when performing these requests. ...
1
vote
1answer
60 views

can REST post/put have request parameter and no request payload

I am working on REST APIs. can REST API post/put can include request parameters without a request payload? where I can find the standard REST specifications
-1
votes
0answers
45 views

Backbone put request 403 Forbidden on IIS6 [closed]

PUT request is disable on IIS6 by default, and IIS return 501 error. I activated webDav extension and PUT request became Fobidden (403). I found some instructions like IIS 6.0 preventing ...
0
votes
1answer
37 views

SoundCloud API Failing on track comment

I am trying to consume SoundCloud API in .NET application. I need to post a comment for a predefined track. I am using the following code: byte[] response = client.UploadValues(String.Format ...
0
votes
1answer
79 views

Why does RestKit's ManagedObjectRequestOperation with PUT not update CoreData

I have the following code: NSMutableURLRequest *request = [[ObjectManager sharedInstance] requestWithObject:managedObj method:RKRequestMethodPUT path:nil parameters:nil]; (there are registered ...
0
votes
0answers
38 views

how can i upload image and other form data using stream_context_create function with PUT method

i am using below function to post data and image on remote server. function do_post_request_put($url, $data, $optional_headers = null) { $params = array('http' => array( 'method' => ...
0
votes
0answers
75 views

curl command to Java code using Apache HttpClient

I am trying to write java client to restful service. There is no problem with authentication, but i dont know how to add --data parameter. Here is the curl command: curl -i -L --user user:password ...
3
votes
2answers
172 views

C# HttpClient PUT

For some reason my below code that used to work now consequently raises an exception: public static async Task<string> HttpPut(string inUrl, string inFilePath) { using (var handler ...
0
votes
0answers
60 views

PUT string getting cut off [closed]

I'm making a put request to my server using PHP. I'm updating some text for a field and it seems that if it's too large it gets cut off. I'm doing a direct request using a REST client and it seems ...
1
vote
2answers
29 views

Should we always validate resource id in url and body in HTTP PUT request?

Suppose I am updating a employee record url - /api/employees/10 body - { id : 10, name : xyz } Should I validate for the employee id in url is same as in response? Because one employee can ...
0
votes
1answer
49 views

Codeigniter PUT request

I try make PUT request but i can't. My form. <form method="put" action="http://localhost/index.php/book"> <input type="text" name="bookName" /> <input type="submit" ...
3
votes
1answer
50 views

RESTful Soft Delete

I'm trying to build a RESTful webapp wherein I utilize GET, POST, PUT, and DELETE. But I had a question about the use of DELETE in this particular app. A bit of background first: My webapp manages ...
0
votes
0answers
61 views

apache httpd webdav server(use mod_dav) reject “PUT” only because file name?

apache httpd running as webdav server use mod_dav.so, a client use PUT method to upload files. when the file name contains more than 9 chinese characters, the PUT is success. otherwise, failed. The ...
0
votes
2answers
108 views

How to work with ASP.Net WebApi overloaded methods?

I have a situation where I have two methods one accepts a poco and another list of poco in my controller class: [AcceptVerbs("PUT")] [ActionName("Item")] public void SaveItem([FromBody] Item item) { ...
0
votes
2answers
113 views

REST services - testing PUT methods in the browser

I've developed REST services. I can test the GET methods by the browser, or by a Client Application. But those who have PUT methods I don't know how to consume them by the browser... For example, I ...
0
votes
2answers
109 views

Do Amazon S3 GET Object and PUT Object commands slow down at high object counts?

I am considering using S3 for back-end persistent storage. However, depending on architecture choices, I predict some buckets may need to store billions of small objects. How will GET Object and PUT ...
0
votes
0answers
43 views

HTTP Put vs Post [duplicate]

Is there an actual difference between HTTP PUT and POST requests, or is it just a semantic thing? I'm currently trying to make an API for my PHP web app and so far I'm using GET to, of course, get ...
0
votes
1answer
23 views

REST Update Child Object - Prevent Id field From Changing

Suppose I have the following object graph that a client could submit in an HTTP PUT request to update my parent object { "Id": 123, "FirstName": "Joe", "LastName": "Smith", "Schools": [ { ...
0
votes
2answers
190 views

Android HttpURLConnection PUT to Amazon AWS S3 403 error

Uploading a file to Amazon S3 using presigned URL which has Signature, Expiration and AccessKey, using the following code I'm able to upload the file using normal java code but same code in Android ...
3
votes
1answer
117 views

C++ w/ OpenGL Pixel Perfect Plot

I need to plot a pixel on the window, according to its position in pixels in integers, not floats. like, for example, if I was to plot 0, 0 it would be the very top left corner of the window, 1,1 ...
0
votes
1answer
202 views

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. GET, POST and DELETE requests work ok. For example after a POST request I get an output Data ...
0
votes
1answer
26 views

REST Updating field that has a looked up value from the database

Take the following scenario: I want to update a Manufacturer field on a car object via a REST PUT call. The data that should be sent looks like this: { "Id": "1000000251" "Manufacturer": ...
0
votes
1answer
68 views

PUT and DELETE methods not working on AppHarbor

I am having a lot of trouble trying to run an ASP MVC4 application with webapi on ApplicationHarbor's servers. I simply can't invoke the PUT and DELETE http verbs. Did you had the same problem? How ...
0
votes
1answer
162 views

How do you make an ASP.Net 3.5 WebService accept AJAX PUT requests?

I am not able to get a WebService in an ASP.Net 3.5 project to accept PUT requests. Here is the AJAX call: var url = '/MyService.asmx/UpdateObject'; var options = { dataType: "json", ...
1
vote
1answer
93 views

PUT method with @FormParam

If I have something like: @PUT @Path("/login") @Produces({"application/json", "text/plain"}) @Consumes("application/json") public String login(@FormParam("login") String login, @FormParam("password") ...
0
votes
1answer
21 views

Can't use tempurl with put method to upload

I have installed keystone and swift and had proxy-server.conf configured. I can generate a temp url to download a object without any promblem.. But when I use the same way(I did changed the method ...
0
votes
1answer
127 views

Backbone.Backgrid infinite loop when calling model.save() on collection change event

Backbone.Backgrid enters a PUT request loop when I save a changed model inside my collection. The loop only happens when I return the updated (or old) model in the PUT request, but not when returning ...
0
votes
1answer
193 views

Upload image using ajax put method

How to upload an image using ajax put method using plain javascript and html.Can file data can be sent via ajax put data attribute? If so please clarify me in detail. Thanks..
1
vote
1answer
57 views

Youtube API Put request to update metadata acting as readonly

Ok, so I've given up on attempting to update metadata via the onApiReady for the Youtube API and moved on to issuing a put request as indicated by ...
0
votes
1answer
67 views

Consume a String sent via PUT method

I'm developing REST services using Jersey. In a PUT method, I want to consume a String, and then use it in another method. Something like: I enter a String in the "Content" field (of TEST REST WEB ...
0
votes
0answers
355 views

Uploading Image to server from android application

I am developing small android application in which I want to upload my image to my server with put method and image as body of request with json object.I refereed lot of questions regarding this and ...
0
votes
2answers
536 views

httpClient -> HTTP/1.1 500 Internal Server Error

I'm allways getting this error (HTTP/1.1 500 Internal Server Error) when I'm trying to do a PUT/POST in my REST client application, using HttpClient. Do you have any idea of what kind of error it can ...

1 2 3 4 5 8