Questions tagged [http-compression]

HTTP compression is a capability that can be built into web servers and web clients to make better use of available bandwidth, and provide faster transmission speeds between both

HTTP compression is a capability that can be built into web servers and web clients to make better use of available bandwidth, and provide faster transmission speeds between both. HTTP data is compressed before it is sent from the server: compliant browsers will announce what methods are supported to the server before downloading the correct format; browsers that do not support compliant compression method will download uncompressed data. The most common compression schemas include gzip and deflate, however a full list of available schemas is maintained by IANA

309 questions
0
votes
0 answers

Least resource-intensive way to compress and serve a large, heavily-requested RSS feed?

The biggest draw on our bandwidth is the podcast.xml feed (mp3 files are hosted elsewhere). We have Apache set to use http compression, which is the only way to stay below the 4TB limit imposed by ISP. But our Apache threads are now consuming an…
CaymanCarver
  • 389
  • 3
  • 14
0
votes
1 answer

How do you get Lighttpd to compress CodeIgniter's "clean urls"?

I was looking at PageSpeed on my test website and noticed that Lighttpd wasn't compressing my HTML (but was compressing my javascript and css files). I'm assuming this is because I'm using CodeIgniter and it's clean url system and since the requests…
Seaux
  • 3,459
  • 2
  • 28
  • 27
0
votes
2 answers

gzip compression in web server or app server?

I'm using Weblogic application server and Apache web server in my J2EE environment and planning to implement gzip compression of response. Not sure, whether to implement compression on the Apache server or on the weblogic.
SyAu
  • 1,651
  • 7
  • 25
  • 47
0
votes
1 answer

What user_agent should I set with Curl::Easy

I am running a Rails 3 app with ruby 1.9.3-p448 and using the Curl::Easy library to scrape some images when a user includes a url in a post. lets set: url_a =…
wuliwong
  • 4,238
  • 9
  • 41
  • 69
0
votes
1 answer

API time out when trying to send serialized data if data is more in number

I am working on an API that is connected for a store. Now there are bunch of Items and user base and I have different serializable classes that represent this data. Issue that I am facing is when I am making a GET call and record count is greater…
Ankit Verma
  • 63
  • 1
  • 10
0
votes
0 answers

IIS 7 Dynamic Compression is not consistently compressing responses

I have got Dynamic Compression enabled on IIS for all content types. Requests to my WCF service are sending the following header: Accept-Encoding: gzip, deflate And responses from IIS are nearly always being compressed and show the following content…
Easystar
  • 11
  • 1
0
votes
1 answer

gzip compression wont work with my custom java HTTP server

No idea what i could be doing wrong here. When I try to look at the response with firebug, it's just saying that I need to reload the page to get it's source. I tried using GZIPOutputStream instead, but then it just wrote some weird chars at the…
Seppo420
  • 2,041
  • 2
  • 18
  • 37
0
votes
2 answers

A filesystem-based compression cache -- does this exist?

I'm looking for a program with really quite specific functionality, which hopefully exists so I don't have to implement it myself. I can best describe this hypothetical program as a filesystem-based cache of compressed copies of documents in the…
jameshfisher
  • 34,029
  • 31
  • 121
  • 167
0
votes
1 answer

how to send zipped (ASCII) data in an HTTP response from PHP

I am writing a service that sends data as a response, to a client. I am sending text (PLAIN ASCII) data, but I want to compress the data first (uzing any of the standard compression routines), and then send the compressed data back to the server,…
skyeagle
  • 6,925
  • 16
  • 56
  • 71
0
votes
3 answers

Can I use Compression in WCF?

we hosted WCF services in IIS 5.1 wndows xp sp3 with httpBasicBinding. The data tranferered is huge in size and transfered every 1 minute. For this to less data transfer Is it possible to compress the response of WCF service by using default http…
nRk
  • 1,251
  • 7
  • 24
  • 50
0
votes
1 answer

Test Server HTTP 1.1 Compression

I want to find about the HTTP 1.1 compression of the site I am talking to. I need to do it programmatically in Java. What I want to find out is: Does the server support compression for incoming requests? Does the server support compression for…
er4z0r
  • 4,711
  • 8
  • 42
  • 62
0
votes
1 answer

can I dynamically reduce the page size by compressing / decompressing its HTML

I want to know if I can apply compression/decompression to my existing aspx page. What I want to say is that, I must be able to compress the response send by the server in some compressed format . Please note, only the HTML Source to be compressed…
user240141
0
votes
1 answer

Decompression of payload in my webservice

How to process an incoming Payload(SOAP) which is COMPRESSED, in my webservices which I have created using Axis ???
Kumar Ritesh
  • 183
  • 1
  • 2
  • 11
0
votes
0 answers

Rails - decompressing HTTP request

Is there some way to decompress HTTP request (sent from mobile phone) on server side? Will be this done using Ruby, or server's means makes no difference. Servers planned to use are: Webrick, Thin and Apache2. I am planning to compress request in my…
Paul
  • 25,812
  • 38
  • 124
  • 247
0
votes
1 answer

gzip not working on internal css and javascript

I followed this link to gzip my php driven website It's working fine but what happened is I checked my website in this link http://gzipwtf.com/ and as well as checked it in web developer toolbar in mozila whether css and javascripts are gzipped or…
uttam
  • 589
  • 2
  • 7
  • 33
1 2 3
20
21