I plan to configure weblogic's gzip servlet filter (using weblogicx-gzip.jar) to gzip my web pages.
How can I verify that the pages are being sent to the client gzipped?
I plan to configure weblogic's gzip servlet filter (using weblogicx-gzip.jar) to gzip my web pages.
How can I verify that the pages are being sent to the client gzipped?
yslow will tell you. At least it will tell you when they are not zipped.
Content-Encoding
is gzip
you received the page in GZip format.Not sure if you're looking for a automatic way. But the Firebug and/or PageSpeed extensions for Firefox will tell which files are being gzipped.
For Firebug, in the "Net" panel, if you look at the files headers there should be a "Content-Encoding: gzip" header if it's gzipped.
The YSlow extension will also tell you on one screen which JS/CSS files are gzipped and which are not.