Connecting Tech Pros Worldwide Help | Site Map

using RFC2616

Newbie
 
Join Date: Jun 2009
Posts: 8
#1: Jul 3 '09
Using RFC2616 what is the difference between a server response to the HEAD and GET client requests?

thanks
Banfa's Avatar
AdministratorVoR
 
Join Date: Feb 2006
Location: South West UK
Posts: 6,161
#2: Jul 3 '09

re: using RFC2616


If you Google or Wikipedia "RFC 2616" you will immediately get the answer to this question.
Newbie
 
Join Date: Jun 2009
Posts: 8
#3: Jul 6 '09

re: using RFC2616


HEAD
Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information written in response headers, without having to transport the entire content.
GET
Requests a representation of the specified resource. Note that GET should not be used for operations that cause side-effects, such as using it for taking actions in web applications. One reason for this is that GET may be used arbitrarily by robots or crawlers, which should not need to consider the side effects that a request should cause. See safe methods below.


IS THIS THE ANSWER
Reply