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? |
|||
|
|
|
|||||||
|
|
I second the Yslow comment. But to expand just a little, YSlow will show items are using GZip as well as items that are not. Just go to the Components tab of the YSlow Plugin and it will give you a nice column view of items (see image).
|
|||
|
|
that site offer online tool to check |
|||
|
|
|
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. |
|||
|
|
|
You can use fiddler and inspect the http header for gzip encoding. Also if you want to see how much compression it did, you can see the page size with and without the filter. From my experience I have seen 90% compression on average on text data. |
|||
|
|
|
Google Chrome's, or Chromium's, web developer kit can also do this (in a similar fashion as Firebug). |
|||
|
|