Link to home
Start Free TrialLog in
Avatar of javaCaravan0
javaCaravan0

asked on

setting Content-Encoding to gzip to improve the response time

I would like to make use of gzip to compress the file before they are sent in the response object to improve the response time. How can I do it using JSP or web.xml.
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It is not clear what "the file" is. If you are generating an HTML content, pipe it through a zip stream, possibly using a filter like advised above, the important point is to set proper response header.

If you are sending a file you would like to compress, it might be advantageous to zip it beforehand so that you know its exact size, otherwise you can use the same approach as with HTML content.
most servers have built in support for gzip compression, you just need to enable it
what server are you using?
Avatar of javaCaravan0
javaCaravan0

ASKER

I'm using JBOSS AS. We need to turn on the compression in JBOSS server to enable gzip compression. For any reason, if we are not able to turn on the compression, is there a way to use the JAR file that JBOSS server uses to compress the files. What is the name of that the JAR file/program name within JBOSS server that it uses to compress the files when compression is turned on in JBOSS server
we are using JBOSS 4.3 AS. Not sure whether compression="on"  is even possible in JBOSS 4.3.
Can somebody confirm.
here is the site:

http://stackoverflow.com/questions/2994420/enabling-gzip-compression-for-jboss
Yes it works (tested on JBoss 4.2.2) if you define connector properties as above.
ok that's great. Will I have to define "compressableMimeType"?
If yes, then what is the mime type for .do (all the transactions have .do extension for JSPs)
> If yes, then what is the mime type for .do (all the transactions have .do extension for JSPs)

the mime type depends pn whats being returned, not the file extension (the same file extension could return many different mime types)
If they are are returning html then its text/html
I'll be closing it by next week