A HEAD request is like a GET or POST request. The request handler must have a def head(self) method. The responds should be the result of a GET request but without the body. I don't know how webapp or another framework handles it after the return of the head() function.
http://code.google.com/appengine/docs/python/tools/webapp/requesthandlerclass.html 2011/1/16 Tom Critchlow <[email protected]>: > Hi djidjadji, > I'm pretty now to coding and python - could you please give me a pointer as > to how I add HEAD information? Is this something I need to do within > GAEsessions? > Is this related to the missing middleware error or unrelated? > Thanks > Tom > > On Sun, Jan 16, 2011 at 8:44 AM, djidjadji <[email protected]> wrote: >> >> http://www.downforeveryoneorjustme.com/ >> does a HEAD request. If you don't implement that the site is reported >> as down also. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Google App Engine" group. >> To post to this group, send email to [email protected]. >> To unsubscribe from this group, send email to >> [email protected]. >> For more options, visit this group at >> http://groups.google.com/group/google-appengine?hl=en. >> > > > > -- > Tom Critchlow > twitter.com/tomcritchlow > www.fuckyeahspotify.com > www.7bks.com > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
