Hypertext Transfer Protocol is an application level network protocol that is used for the transfer of content on the World Wide Web.
712
votes
8answers
85k views
The Definitive Guide To Forms based Website Authentication
Form Based Authentication For Websites
Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, ...
308
votes
8answers
72k views
What is the maximum length of a URL?
Does it differ between browsers?
Does the HTTP protocol dictate it?
286
votes
11answers
78k views
PUT vs POST in REST
According to the HTTP/1.1 Spec:
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the ...
165
votes
12answers
68k views
Simple “Long Polling” example code?
I can find lots of information on how Long Polling works (For example, this, and this), but no simple examples of how to implement this in code.
All I can find is cometd, which relies on the Dojo JS ...
141
votes
17answers
205k views
JavaScript post request like a form submit
I'm trying to direct a browser to a different page. If I wanted a GET request, I might say
document.location.href = 'http://example.com/q=a';
But the resource I'm trying to access won't respond ...
122
votes
8answers
32k views
Are the PUT, DELETE, HEAD, etc methods available in most web browsers?
I've seen a couple questions around here like How to debug RESTful services, which mentions:
Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even ...
117
votes
8answers
7k views
What exactly is RESTful programming?
What exactly is RESTful programming?
Don't give me links to wikipedia please, I'm hoping for a straight-forward answer, not some BUZZ-word-ful answer.
Bonus question: Should I feel stupid because I ...
92
votes
14answers
38k views
HTTP vs HTTPS performance
Are there any major differences in performance between http and https? I seem to recall reading that https can be up to 1/5 times slower than http. Is this valid with the current generation ...
91
votes
16answers
12k views
What's the difference between a URI and a URL?
People talk about URLs and URIs as if they're different things, but they look the same to the naked eye. What's the difference between the two?
88
votes
8answers
99k views
What requests do browsers' “F5” and “Ctrl + F5” refreshes generate?
Is there a standard for what actions F5 and Ctrl+F5 trigger in web browsers?
I once did experiment in IE6 and Firefox 2.x. The "F5" refresh would trigger a HTTP request sent to the server with an ...
83
votes
12answers
11k views
When do you use POST and when do you use GET?
From what I can gather, there are three categories - never use GET and use POST, never use POST and use GET, and it doesn't matter which one you use.
Am I correct in assuming those three cases? If ...
63
votes
7answers
104k views
How to send HTTP request in java?
I want to compose a HTTP request message in java and then want to send it to a HTTP WebServer.
I also want the document content of the page recieved which I would have recieved if I had sent the same ...
62
votes
15answers
38k views
HTTP testing tool, easily send POST/GET/PUT
I'm in the need of a tool to help debugging a webapp - anyone know of some simple
client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests ?
62
votes
13answers
3k views
Hidden features of HTTP
What hidden features of HTTP do you think are worth mentioning?
By hidden features I mean features that already are part of the standard but widely rather unknown or unused.
Just one feature per ...
60
votes
8answers
56k views
Response Content type as CSV
I need to send a CSV file in HTTP response. How can I set the output response as CSV format?
This is not working:
Response.ContentType = "application/CSV";
59
votes
15answers
56k views
HTTP URL Address Encoding in Java
My Java standalone application gets a URL (which points to a file) from the user and I need to hit it and download it. The problem I am facing is that I am not able to encode the HTTP URL address ...
59
votes
20answers
19k views
GET versus POST in terms of security?
This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose ...
53
votes
7answers
9k views
REST API error return good practices
I'm looking for guidance on good practices when it comes to return errors from a REST API. I'm working on a new API so I can take it any direction right now. My content type is XML at the moment, but ...
52
votes
3answers
11k views
ETag vs Header Expires
I've looked around but haven't been able to figure out if I should use both an ETag and an Expires Header or one or the other.
What I'm trying to do is make sure that my flash files (and other images ...
50
votes
7answers
50k views
Accessing HTTP Headers in Javascript?
How do I access the HTTP response headers via JavaScript?
Related to this question, which was modified to ask about specifically accessing browser information.
50
votes
8answers
11k views
Is there any way 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 any way to do an HTTP PUT in python?
46
votes
7answers
10k views
Are https URLs encrypted?
Are all URL's encrypted when using SSL(https) encryption? I would like to know because I want all URL data to be hidden when using SSL(https).
If SSL gives you total URL encryption then I don't have ...
44
votes
7answers
29k views
Asynchronous PHP calls?
Is there a way to PHP make asynchronous http calls? I don't care about the response, I just want to do something like file_get_contents(), but not wait on the request to finish before executing the ...
43
votes
3answers
38k views
How do I make an http request using cookies on Android?
I'd like to make an http request to a remote server while properly handling cookies (eg. storing cookies sent by the server, and sending those cookies when I make subsequent requests). It'd be nice ...
40
votes
8answers
20k views
Python: urllib/urllib2/httplib confusion
I'm trying to test the functionality of a web app by scripting a login sequence in Python, but I'm having some troubles.
Here's what I need to do:
Do a POST with a few parameters and headers.
...
38
votes
9answers
8k views
Detect when browser receives file download
I have a page that allows the user to download a dynamically-generated file. It takes a long time to generate, so I'd like to show a "waiting" indicator. The problem is, I can't figure out how to ...
38
votes
7answers
26k views
What's the difference between Cache-Control: max-age=0 and no-cache?
max-age=0 implies that the content is considered stale (and must be re-fetched) immediately, which is in effect the same thing as no-cache.
Google has failed to solve this mystery for me :(
38
votes
5answers
27k views
HTTP POST with URL query parameters — good idea or not?
I'm designing an API to go over HTTP and I am wondering if using the HTTP POST command, but with URL query parameters only and no request body, is a good way to go.
Considerations:
"Good Web ...
37
votes
8answers
13k views
HTTP GET with request body
I'm developing a new REST-full webservice for our application.
When doing a GET on certain entities, clients can request the contents of the entity.
If they want to add some parameters (for example ...
37
votes
10answers
30k 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 ...
37
votes
11answers
20k views
C/C++ Web Server Library?
I'm looking for a well-written, flexible library written in C or C++ (I'm writing my apps in C++) that can be used to embed an relatively simple HTTP server into my applications. Ultimately I will ...
35
votes
9answers
9k views
How big can a user agent string get?
If you were going to store a user agent in a database, how large would you accomdate for?
I found this technet article which recommends keeping UA under 200. It doesn't look like this is defined in ...
35
votes
3answers
7k views
Is an entity body allowed for an HTTP DELETE request?
When issuing an HTTP DELETE request, the request URI should completely identify the resource to delete. However, is it allowable to add extra meta-data as part of the entity body of the request?
34
votes
7answers
36k views
Access-Control-Allow-Origin Multiple Origin Domains?
Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header?
I'm aware of the *, but it is too open. I really want to allow just a couple domains.
As an example, ...
34
votes
5answers
10k views
Android: HTTP communication should use “Accept-Encoding: gzip”
I've a HTTP communication to a webserver requesting JSON data. I'd like compress this data stream with Content-Encoding: gzip. Is there a way I can set Accept-Encoding: gzip in my HttpClient? The ...
34
votes
7answers
13k views
How do you send a HEAD HTTP request in Python?
So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for ...
33
votes
6answers
11k views
HTTP 1.0 vs 1.1
Could somebody give me a brief overview of the differences between HTTP 1.0 and HTTP 1.1? I've spent some time with both of the RFCs, but haven't been able to pull out a lot of difference between ...
33
votes
9answers
36k views
Ruby: How to post a file via HTTP as multipart/form-data?
I want to do an HTTP POST that looks like an HMTL form posted from a browser. Specifically, post some text fields and a file field.
Posting text fields is straightforward, there's an example right ...
30
votes
9answers
4k views
How does the live, real-time typing work in Google Wave?
I'm sure Wave doesn't poll the server every millisecond to find out if the other user has typed something... so how can I see what the other person is typing as they type? And without hogging the ...
29
votes
1answer
21k views
How to use Python to login to a webpage and retrieve cookies for later usage?
I want to download and parse webpage using python, but to access it I need a couple of cookies set. Therefore I need to login over https to the webpage first. The login moment involves sending two ...
28
votes
3answers
2k views
Can I change all my http:// links to just //?
Dave Ward says,
It’s not exactly light reading, but section 4.2 of RFC 3986 provides for fully qualified URLs that omit protocol (the HTTP or HTTPS) altogether. When a URL’s protocol is omitted, ...
28
votes
2answers
13k views
URL encoding the space character: + or %20?
When is a space in a URL encoded to + and when is it encoded to %20?
28
votes
8answers
6k views
Paging in a Rest Collection
I'm interested in exposing a direct REST interface to collections of JSON documents (think CouchDB or Persevere). The problem I'm running into is how to handle the GET operation on the collection root ...
27
votes
4answers
5k views
Custom HTTP headers : naming conventions
Several of our users have asked us to include data relative to their account in the HTTP headers of requests we send them, or even responses they get from our API.
What is the general convention to ...
27
votes
10answers
20k views
Are there any HTTP/HTTPS interception tools like Fiddler for mac os X?
I would want to ask you if you know any application like fiddler but for mac os x , i need to debug some requests from google earth in mac os x. i used to do it with fiddler on windows but now i don't ...
26
votes
4answers
6k views
REST HTTP status codes
I'm building an application with a REST-based API and have come to the point where i'm specifying status codes for each requests.
What status code should i send for requests failing validation or ...
26
votes
9answers
13k views
Best way to upload multiple files from a browser
I'm working on web application. There is one place where the user can upload files with the HTTP protol. There is a choice between the classic html file upload control and a java applet to upload the ...
26
votes
12answers
84k views
HTTP GET request in Javascript?
I need to do an HTTP GET request in JS, what's the best way to do that?
Thanks
EDIT: I need to do this in a Mac OS X dashcode widget
25
votes
3answers
1k views
http keep-alive in the modern age
So according to the haproxy author, who knows a thing or two about http:
Keep-alive was invented to reduce CPU
usage on servers when CPUs were 100
times slower. But what is not said is
that ...
25
votes
5answers
12k views