Search Results

1
vote

How do I make a POST request with curl

This is trivially answered with any search engine. Edit: Right now, if you type How do I make a POST request with curl into Google, the very first hit lead …
0
votes

http client’s programing language

Pretty much any popular language can deal with this. Use the one you are most familiar with. …
1
vote

How do I read selected files from a remote Zip archive over HTTP using Python?

Bear in mind that merely decompressing a ZIP file may result in a security vulnerability. …
1
vote

Is there a way to clear a user’s brower of my page, or say not to use cache?

Ignore everybody telling you to use <meta> elements or Pragma. They are very unreliable. You need to set the appropriate HTTP headers. A good tutorial on how to d …
1
vote

How do I know WHEN to close an HTTP 1.1 Keep-Alive Connection?

Lets see how stackoverflow handles this very obscure question -- answers for which, on Google, are mired in technical specifications and obscure language. I jus …
1
vote

how do i modify the first returned header on the fly

That is not a header, it is the status line. Lying about the status of responses can often cause problems, for example, link checkers would miss reporting such errors. You are relying on a …