Search Results

0
votes

Parameter retrieval for HTTP PUT requests under IIS5.1 and ASP-classic?

Try using the BinaryRead method in the Request object: http://www.w3schools.com/ASP/met_binaryread.asp O …
1
vote

GET vs. POST does it really really matter?

By HTTP specifications, GET is safe and idempotent and POST is neither. What this means is that a GET request can be repeated multiple times without causing side effects. Even if your se …
2
votes

How to properly send an HTTP message to the client

If you're using Tomcat, see the setting org.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER: http://to …
16
votes

Is there any reason not to use HTTP PUT and DELETE in a web application?

Actually a fair amount of people use PUT and DELETE, mostly for non-browser APIs. Some examples are the Atom Publishing Protocol and the Google Data APIs: …
2
votes

Is there anything like HTTP::Recorder for Python?

I'm aware of Scotch and FunkLoad, but I don't know how they compare with HTTP::Recorder. See the following links for more details: …
1
vote

HTTP POST binary files using Python: concise non-pycurl examples?

POSTing a file requires multipart/form-data encoding and, as far as I know, there's no easy way (i.e. one-liner or something) to do this with the stdlib. But as you mentioned, there a …
1
vote

Python http proxy library based on libevent or comparable technology?

Not sure if meets all your needs, but proxylet is a reverse proxy based on Linden Lab's …