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.
|
8
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Have anyone ever seen 402 Payment Required? |
||||
|
|
|
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. |
|||
|
|
|
|
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.
|
|||
|