Tagged Questions

HTTP PUT Uploads a representation of the specified resource.

learn more… | top users | synonyms

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
741 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 ...
5
votes
1answer
2k views

Java: HTTP PUT with HttpURLConnection

How do you do do an HTTP PUT? The class I'm using seems to think it is doing a PUT but the endpoint is treating it as if I did a GET. Am I doing anything wrong? URL url = new URL("https://..."); ...
4
votes
1answer
1k views

ASIHTTP: Upload UIImage?

Can someone please tell me how I can use an ASIHTTPRequest object in Objective-c to upload an UIImage object? Do I need to convert it to an NSData object? (This is for an avatar upload url) E.g. ...
3
votes
3answers
128 views

Method to trick ASP.NET to process HTTP PUT as POST?

I have a web cam that can send an image via HTTP PUT to a web server. I'd like to process this in ASP.NET MVC, but it doesn't natively support PUT. Is there any way to trick it into treating the ...
3
votes
2answers
184 views

Read data from HTTP PUT

I am currently implementing a RESTful web service which talks XML using CodeIgniter and REST by Phil Sturgeon. I am now stuck at how to read XML from HTTP PUT. This is what I did. At the client side: ...
3
votes
3answers
175 views

Trouble finding library that supports http PUT in Python 2.7

I need to perform http PUT operations from python Which libraries have been proven to support this? More specifically I need to perform PUT on keypairs, not file upload. I have been trying to work ...
3
votes
5answers
3k views

Sending a file via HTTP PUT in PHP

I've been struggling for several hours trying to figure out how to get this work. I'm trying to send a file via HTTP-PUT to an eXist db. There is user authentication for the server, so I was trying ...
2
votes
0answers
267 views

bad request with HttpPut (or HttpPost)

I'm trying to send a PUT (or a POST) to a server, but all I receive is a "400 bad request". From a look at the server the request arrives to apache, but it doesn't go on to rails. I get this error: ...
2
votes
1answer
509 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
661 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
4answers
1k views

PHP upload file using PUT instead of POST

I read something about this on PHP docs, but it's not clear to me: Do the most widely used browsers (IE, FF, Chrome, Safari, Opera, ...) support this PUT method to upload files? What HTML should I ...
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
301 views

WCF REST 4.0 PUT/POST/DELETE not working (400 Bad Request)

I have been working on setting up a WCF REST service in .NET 4.0. I have GET requests working, but any request that involves POSTing data to the server fails with a HTTP 400 Bad Request. This is my ...
1
vote
2answers
122 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, ...
1
vote
2answers
54 views

Getting improper Output from HttpURLConnection InputStream

URL url = new URL("http://soandso.com"); String userpassword = username + ":" + password; conn = (HttpURLConnection)url.openConnection(); conn.setDoOutput(true); ...
1
vote
0answers
25 views

Codes with regards to PUT method

I'm currently doing a project on a taxi booking application. We're are stuck at UPDATING the client's data from the server. I'm using Eclipse and working on Android. The level of understanding of ...
1
vote
1answer
72 views

How to add XML data to HttpPut object?

I have a small problem. I am testing my Android REST class on http://www.thomas-bayer.com/sqlrest/CUSTOMER DEMO REST service. Get method is OK, but I don't know how to use HttpPut or HttpPost. ...
1
vote
2answers
177 views

Android and authenticated HttpPut with JSON body

How do you do write an HttpPut request with authentication on Android? (I'm trying to work around using HttpURLConnection, which seems to serious have bugs (at least in Android 2.2) but GET works ...
1
vote
1answer
277 views

Java HttpsURLConnection SSLHandshakeException

I am attempting to make a HTTPS connection to a website using HttpsURLConnection, and then perform a PUT request. When I try to create the OutputStreamWriter from HttpsURLConnection.getOutputStream(), ...
1
vote
2answers
518 views

Request.Form not populated when using the HTTP PUT method (ASP.NET MVC)

I'm attempting to process the body of an HTTP PUT request, but it seems that the MVC engine (or perhaps the ASP.NET stack underpinning it) isn't automatically parsing & populating the request's ...
0
votes
0answers
15 views

How do I make a put request with a picture to a https in ios5?

I am trying to take a picture and send the data as a put request to an https in ios5. How would I do this or are there any good guides?
0
votes
2answers
61 views

WebView ignore Javascript that invokes PUT/DELETE Http method

I have a web view that in it's HTML/Javascript makes an Http call with Put/Delete methods. those calls seems to be ignored (I test them on chrome and they work fine). Any idea? Here's the JS code ...
0
votes
1answer
43 views

Problems with PostReplaceFilter, not able to override POST with PUT

I'm having trouble with the usage of PostReplaceFilter. I'm trying to override a POST request sending from an HTML form with a PUT request. The documentation said that, for Jersey 1.10 (which I'm ...
0
votes
2answers
206 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
0answers
42 views

How to write a PUT test in Testosterone?

I want to use Testosterone to test a PUT request to a Node+Express app, but can't find any examples. How do I attach a JSON payload to the PUT request? I'm using the code below, following the example ...
0
votes
1answer
99 views

Hibernate Idempotent Update

I tried searching this over the net but in vain. Is there a way to use hibernate to perform an idempotent update. One use case is to use HTTP PUT to update a specific field in the database via a ...
0
votes
1answer
39 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
1answer
213 views

How to create HTTP PUT Request on BlackBerry

To give some background: I'm building a BlackBerry frontend to talk to a backend web service built to support only PUT requests for a lot of important resources instead of POST requests. This ...
0
votes
2answers
331 views

Android: How to determine if an HTTP PUT request has finished processing

Just wondering if anyone knows how to determine when a HTTP PUT request is complete. For eg: HttpClient http = new DefaultHttpClient(); HttpPut putmethod = new ...
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
1answer
130 views

Remotely deploying in Tomcat 7 using HTTP PUT

I want to remotely deploy my web app in Tomcat 7. I have added manager-gui, manager-text roles and added a user in conf/tomcat-users.xml. I checked this link out. Deploy A New Application Remotely ...
0
votes
3answers
163 views

Why Does My Put request fail?

Using Python 2.5 and httplib...... I am admittedly a python novice.....but this seems straight forward, why doesn't this work? httpConn = HTTPConnection('127.0.0.1', 44789) ...
0
votes
0answers
108 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
4answers
550 views

How is a HTTP PUT request typically issued?

I know HTTP PUT is an idempotent request that store something at a specific URI, according to the definition (quoted from the rfc) The PUT method requests that the enclosed entity be stored under the ...
0
votes
2answers
386 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 ...
-6
votes
1answer
248 views

In Java, what do HttpGet(url), HttpPost(url), etc. return? Also, what does httpClient.execute(httpget) return? [closed]

I am trying to understand some Java code but don't know what the following things return: HttpGet(url) HttpPut(url) HttpPost(url) HttpDelete(url) and httpClient.execute(httpget) where: HttpGet ...