Tagged Questions

14
votes
6answers
1k views

Is there anyway 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 anyway to do http put in python?
5
votes
8answers
306 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?
3
votes
10answers
1k 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 …
2
votes
4answers
98 views

using HTTP PUT, but not fully replace the entity

Hi guys, 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 …
2
votes
4answers
300 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 …
1
vote
2answers
1k views

How to send PUT, DELETE HTTP request in HttpURLConnection ? Looks like not working.

Hi all. 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, …
1
vote
1answer
406 views

.NET Sharepoint Create Directory

I can upload a file to sharepoint with the webclient as follows using (System.Net.WebClient webclient = new System.Net.WebClient()) { System.Net.NetworkCredential credentials = new …
1
vote
4answers
462 views

http PUT a file to S3 presigned URLs using ruby

Anyone got a working example of using ruby to post to a presigned URL on s3
0
votes
1answer
24 views

X-HTTP-Method-Override in jQuery?

How can I do an X-HTTP-Method-Override for an ajax request in jQuery?
0
votes
2answers
31 views

Iphone Web put and get.

All, I need to create an app for work that signs into our website using SSL and returns our member information. I have figured out how to log in but am not sure how to find the id tags that I want …
0
votes
2answers
148 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 …
0
votes
1answer
105 views

PUT/POST not working in self-hosted WCF REST configuration

Greetings! I have a self-hosted server (Windows service) that is supporting both SOAP/RPC (this may go away in the future) and REST. The RESTful GETs are working as expected, but PUT/POST are giving …
0
votes
3answers
225 views

Recursively PUT files to a remote server using FTP

I'm currently in a situation where I have very limited access to a server, but need to upload and download a significant amount of files contained within a single directory structure. I don't have …
0
votes
2answers
82 views

Alternative bodies for HTTP PUT

Dear list, I'm developing a REST-ful webservice, and I have a question about the HTTP PUT method. I want to allow people to submit content using a application/form-data request body. However, the …
0
votes
2answers
557 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: …

1 2 next
15 30 50 per page