hi all,
I'm testing application locally ("Development/1.0" server/Mac OS X/
Python 2.5) and want to be sure of one thing:
- even if both User-Agent/Accept-Encoding headers are specified in
request as in:
http://code.google.com/appengine/kb/general.html#compression
(and in few other places in issue list/group)
following occurs:
- "Accept-Encoding" is stripped from request.headers
*(logging)*
{'Content-Length': '', 'Connection': 'close', 'Accept': '*/*', 'User-
Agent': 'gzip', 'Host': 'localhost:8085', 'Content-Type': 'application/
x-www-form-urlencoded'}
*(sniffer)*
GET / HTTP/1.1
Content-Type: application/x-www-form-urlencoded
User-Agent: gzip
Accept-Encoding: gzip
Accept: */*
Connection: close
Host: localhost:8085
- no "gzip" is applied (string data is written to out without
specyfing "gzip" in response headers as required by docs)
Is that limitation of Development server (which is something I could
understand but I cannot find a confirmation trace in documentation or
web resources)?
tia,
regards,
Peter
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---