Hypertext Transfer Protocol is an application level network protocol that is used for the transfer of content on the World Wide Web.

learn more… | top users | synonyms

1926
votes
12answers
198k views

The definitive guide to forms based website authentication

Form based authentication for websites We believe that Stack Overflow should not just be a resource for very specific technical questions, but also for general guidelines on how to solve ...
1073
votes
9answers
219k views

What is the maximum length of a URL in different browsers?

What is the maximum length of a URL in different browsers? Does it differ between browsers? Does the HTTP protocol dictate it?
879
votes
14answers
234k 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 ...
558
votes
21answers
94k 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?
520
votes
3answers
221k views

How to use java.net.URLConnection to fire and handle HTTP requests?

URLConnection is pretty often asked here and the Oracle tutorial is too concise about it. So how do I use it to fire and handle HTTP requests? Are there other hints and best practices on this that ...
482
votes
12answers
68k 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 ...
354
votes
15answers
127k 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 ...
343
votes
19answers
373k 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 ...
276
votes
7answers
74k 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 ...
176
votes
8answers
18k views

Is it valid to replace http:// with // in a <script src=“http://…”>?

I have the following tag: <script type="text/javascript" src="https://cdn.example.com/js_file.js"></script> In this case the site is HTTPS, but the site may also be just HTTP. (The JS ...
175
votes
8answers
181k 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 ...
166
votes
14answers
73k 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 ...
161
votes
16answers
69k views

Making sure a web page is not cached, across all browsers

Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner. For security reasons we do not want certain pages in our application to cached, ever, by ...
156
votes
16answers
113k views

HTTP testing tool, easily send POST/GET/PUT [closed]

I'm in the need of a tool to help debugging a web application. Is there some simple client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests?
151
votes
17answers
141k 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 ...
149
votes
6answers
30k 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 ...
145
votes
6answers
68k views

What's the difference between Cache-Control: max-age=0 and no-cache?

The header Cache-Control: max-age=0 implies that the content is considered stale (and must be re-fetched) immediately, which is in effect the same thing as Cache-Control: no-cache. Google has failed ...
138
votes
11answers
107k 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, ...
138
votes
8answers
30k 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 ...
137
votes
8answers
249k 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 ...
127
votes
5answers
29k views

HTTP status code for update and delete?

What status code should I set for UPDATE (PUT) and DELETE (e.g. product successfully updated)? Thx
127
votes
11answers
48k views

HTTP GET with request body

I'm developing a new RESTful 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 ...
116
votes
9answers
99k 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";
111
votes
23answers
38k views

Is either GET or POST more secure than the other?

When comparing an HTTP GET to an HTTP POST, what are the differences from a security perspective? Is one of the choices inherently more secure than the other? If so, why? I realize that POST doesn't ...
111
votes
8answers
109k 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.
108
votes
5answers
34k 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 ...
104
votes
2answers
54k views

URL encoding the space character: + or %20?

When is a space in a URL encoded to + and when is it encoded to %20?
103
votes
7answers
42k views

What's the difference between a POST and a PUT HTTP REQUEST?

They both seem to be sending data to the server inside the body, so what makes them different?
103
votes
5answers
28k 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 ...
97
votes
3answers
54k views

application/x-www-form-urlencoded or multipart/form-data?

In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
94
votes
12answers
32k 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 ...
92
votes
8answers
25k 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?
92
votes
3answers
24k 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 ...
90
votes
11answers
53k 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 ...
85
votes
3answers
59k views

maximum length of HTTP GET request?

What's the maximum length of an HTTP GET request? Is there a response error defined that the server can/should return if it receives a GET request exceeds this length? update: as indicated in the ...
85
votes
3answers
12k 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, ...
83
votes
4answers
20k 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?
77
votes
7answers
56k 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 ...
74
votes
2answers
59k 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 ...
70
votes
6answers
28k 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 ...
69
votes
13answers
4k 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 ...
69
votes
12answers
212k 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
69
votes
13answers
37k views

C/C++ Web Server Library? [closed]

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 ...
65
votes
12answers
53k views

Are there any HTTP/HTTPS interception tools like Fiddler for mac os X? [closed]

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 ...
64
votes
1answer
45k views

How to post data in PHP using file_get_contents?

I'm using PHP's function file_get_contents() to fetch contents of a URL and then I process headers through the variable $http_response_header. Now the problem is that some of the URLs need some data ...
64
votes
9answers
13k 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 ...
63
votes
10answers
24k 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 ...
62
votes
2answers
43k 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 ...
61
votes
2answers
10k views

Are HTTP headers case-sensitive?

In a blog post I use the following PHP to set the content-type of a response: header('content-type: application/json; charset=utf-8'); I just got a comment on that post saying that content-type ...
61
votes
2answers
8k views

What is Rack middleware?

What is Rack middleware in Ruby?

1 2 3 4 5 344