Tagged Questions
9
votes
3answers
1k views
How to submit RESTful partial updates?
Sam Ruby, author of "RESTful Web Services" seems to come out against the use of HTTP PUT for partial updates: http://intertwingly.net/blog/2008/02/15/Embrace-Extend-then-Innovate
What isn't clear is ...
6
votes
1answer
735 views
How do I handle file upload via PUT request in Django?
I'm implementing a REST-style interface and would like to be able to create (via upload) files via a HTTP PUT request. I would like to create either a TemporaryUploadedFile or a InMemoryUploadedFile ...
2
votes
1answer
507 views
how to upload file using http put in android?
I have a REST web service and android. Now I want to request Http Put using android to call web service. In my REST web service if user want to do Http Put he can request in terminal like this :
...
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
660 views
How can a PHP REST API receive PUTted data?
I'm writing an API and want to follow the REST approach. As I understand it, if I want to let API users update specific records a PUT http://server/specific_resource type request should be supported. ...
2
votes
2answers
181 views
Should I allow sending complete structures when using PUT for updates in a REST API or not?
I am designing a REST API and I wonder what the recommended way to handle updates to resources would be. More specifically, I would allow updates through a PUT on the resource, but what should I allow ...
1
vote
2answers
116 views
Can Spring MVC have request parameters for an HTTP PUT method, or must I use post? Which should I use to be RESTful?
I have a controller action I think should be an HTTP PUT, but Spring is complaining when I try and use @RequestParam in the controller action. Is request parameters not allowed for HTTP PUT methods, ...
0
votes
2answers
203 views
PUT or DELETE verb in ASP.NET MVC on HTML form
I have a simple user registration form, with two fields, one for username and another for the password. I have a controller called UserController which has these two actions:
[HttpGet]
public ...
0
votes
1answer
37 views
HTTP PUT - enclosed entity be stored under the supplied Request-URI, does that mean Delete and Add?
According to the spec:
The PUT method requests that the enclosed entity be stored under the
supplied Request-URI. If the Request-URI refers to an already existing
resource, the enclosed entity ...
0
votes
0answers
302 views
how to get --data parameter from curl command in REST web service
do anyone know how to get "--data " parameter's value from curl command in REST web service.I have write web service using jersey framework with java in NetBean IDE.
This is curl command which can ...
0
votes
0answers
106 views
PHP Pear PUT request [closed]
Possible Duplicate:
PHP PEAR HTTP PUT
Hello guys! I've got a serious problem while developing with PHP Pear library. I am working on an inteface for a REST repository which shall be able to ...
0
votes
2answers
383 views
Is it really possible to call HTTP PUT using prototype
I'm running JEE6 with glassfish v3 on NetBean6.9 and working on RESTful web service.
I have jsp file which contains javascript function below.
It basically read info from HTML input fields and ...