vote up 9 vote down star
10

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 answer please.

flag

6 Answers

vote up 15 vote down

It's got to be the 418 I'm a teapot status code, part of the Hyper Text Coffee Pot Control Protocol (an extension to HTTP). Makes me laugh every time.

2.3.2 418 I'm a teapot

Any attempt to brew coffee with a teapot should result in the error code "418 I'm a teapot". The resulting entity body MAY be short and stout.

link|flag
That is awesome! – Josh Sep 17 at 12:56
vote up 10 vote down

Obvious answer: PUT, DELETE, TRACE, OPTIONS, CONNECT methods

Most people know about the GET and POST methods because that's what they use when building forms. Browsers also use HEAD a lot. The other methods are much less well-known; they are mostly used by more specific applications.

link|flag
vote up 9 vote down

Have anyone ever seen 402 Payment Required?

link|flag
Yes. In HTTP<->SMS gateway. If you run out of pre-paid credit, you'll start getting 402 responses. – porneL Jul 9 at 19:35
"This code is reserved for future use." Whoops... – zildjohn01 Jul 25 at 22:30
vote up 7 vote down

In Dynamic content use Last_Modified or ETag header

At times you have dynamic content that can be large and/or costly to generate and that may not change from request to request. You can add a Last_Modified or ETag header to the your generated response.

At the top of your expensive dynamic code you can use the If_Modified_Since or the If_None_Match to determine if the content requestor already has is still current. If it is change the response status to "304 Unmodified" and end the request.

Some server-side technologies provide such features formally but you can do the above even in lowly ASP-Classic.

Note this differs from setting Cache-Control, Expires headers in that it ensures the client always has the latest info on request.

link|flag
vote up 3 vote down

The protocol allows you to define your own custom-fields. These can be used to carry other information if you don't want to use cookies for it.

link|flag
vote up 1 vote down

ReST tries to push HTTP to it's limits as an interface protocol.

It's not a hidden feature, but from looking at well-defined ReST APIs one can get quite a nice grip on how HTTP is meant to work and find wonderful examples of what can be achieved with simple combination of HTTP methods, status codes and headers to and fro.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.