Hidden features of HTTP - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T07:42:23Zhttp://stackoverflow.com/feeds/question/954894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/954894/hidden-features-of-http7Hidden features of HTTPGumbo2009-06-05T08:52:00Z2009-06-05T09:22:48Z
<p><strong>What hidden features of HTTP do you think are worth mentioning?</strong></p>
<p>By hidden features I mean features that already are part of the standard but widely rather unknown or unused.</p>
<p><em>Just one feature per answer please.</em></p>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954907#95490714Answer by Greg Beech for Hidden features of HTTPGreg Beech2009-06-05T08:55:45Z2009-06-05T09:01:10Z<p>It's got to be the <strong>418 I'm a teapot</strong> status code, part of the <a href="http://www.ietf.org/rfc/rfc2324.txt" rel="nofollow">Hyper Text Coffee Pot Control Protocol</a> (an extension to HTTP). Makes me laugh every time.</p>
<blockquote>
<p>2.3.2 418 I'm a teapot</p>
<p>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.</p>
</blockquote>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954911#9549118Answer by Martijn for Hidden features of HTTPMartijn2009-06-05T08:57:26Z2009-06-05T08:57:26Z<p><strong>Obvious answer: PUT, DELETE, TRACE, OPTIONS, CONNECT methods</strong></p>
<p>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.</p>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954928#9549289Answer by raspi for Hidden features of HTTPraspi2009-06-05T09:01:15Z2009-06-05T09:01:15Z<p>Have anyone ever seen <strong><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.3" rel="nofollow">402 Payment Required</a></strong>?</p>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954947#9549476Answer by AnthonyWJones for Hidden features of HTTPAnthonyWJones2009-06-05T09:07:31Z2009-06-05T09:07:31Z<p><strong>In Dynamic content use Last_Modified or ETag header</strong></p>
<p>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.</p>
<p>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.</p>
<p>Some server-side technologies provide such features formally but you can do the above even in lowly ASP-Classic.</p>
<p>Note this differs from setting Cache-Control, Expires headers in that it ensures the client always has the latest info on request.</p>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954994#9549943Answer by sybreon for Hidden features of HTTPsybreon2009-06-05T09:22:48Z2009-06-05T09:22:48Z<p>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.</p>