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
1 answer

How to perform test to check whether WCF Response is compressed with httpCompression on IIS7+

I am building test WCF Service (PersonService) in .NET 4.5 hosted on IIS 8 express. I also have installed dynamic compression on IIS. As far as I know WCF 4.0 onward compression is enabled by default. To enable httpCompression at service I have…
Nps
  • 1,638
  • 4
  • 20
  • 40
0
votes
1 answer

GZIP Compression is not woking On jBoss Server When depolyed on LINUX SYSTEM

I am using GZIP compression technique to compress various files in my application. All the files were getting Gzipped and compressed when I was using them on my local server (jBoss EAP 6.1--Standalone-Full profile) but when I tried to implement that…
vaibhav
  • 762
  • 2
  • 12
  • 34
0
votes
2 answers

How to enable the Gzip compression in jBoss EAP server

I am using a jBoss EAP 6.1 sevrer in which I want to Enable the GZIP Compression for my HTML, CSS and javaScript files. I am entirely new to this compression technology, can anyone suggest me a tutorial or can directly give me a step wise process…
vaibhav
  • 762
  • 2
  • 12
  • 34
0
votes
1 answer

HTTP-Compression in rails not working for JSON-responses

I have rails 3.2.1 application and nginx. In nginx configurations I set gzip on;, and compressing works for pages, css, js files. But it does not work for JSON responses. As I found the solution for rails is to add: config.middleware.use…
bmalets
  • 3,207
  • 7
  • 35
  • 64
0
votes
4 answers

How to get grade A on these Yslow rules?

Use a Content Delivery Network (CDN) Compress components with gzip Configure entity tags (ETags) Add Expires headers If i don't have access to Apache configuration.
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
0
votes
1 answer

Wininet not caching compressed content

I have a compressed resource that when viewed in IE, loads from the cache as expected. However when my application loads the same URL, Wininet ignores the cache and always downloads the content from the server. With dynamic content compression…
0
votes
1 answer

IIS 7.5 Compression creates compressed file but returns the non-compressed one

I have trouble setting up the compressing in IIS 7.5. In the "%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files" folder there are my files gzipped, but the browser recieves the original files. Even after refreshing the page again and again…
user2482138
  • 120
  • 1
  • 10
0
votes
1 answer

Compression of sparse signals

I am using Matlab and I have a sparse vector (only having about 10% of nonzero values but otherwise quite arbitrary). I want to compress it (smallest size). I also want to know the compression ratio I obtained.
0
votes
1 answer

Images not compressing on IIS 8.5 with Cloudflare

I've got a web app on IIS 8.5 running on Windows Server 2012 R2 which is running through CloudFlare. Js,html and css files are compressing perfectly using gzip but I cannot get the images to compress. http://www.allaboutstalbans.com/home I've got…
philipK
  • 23
  • 3
0
votes
1 answer

HTTP Compression with Apache besides Deflate and gzip?

I have a server, and I want to set up HTTP Compression. How can I use another compression type for HTTP Compression on my own server? I want to experiment with lzop, lzma or xz, for example. I know I can use gzip and deflate with mod_gzip and…
22332112
  • 2,337
  • 5
  • 21
  • 42
0
votes
1 answer

How to decompress/inflate an XML response from ASP

Can anyone provide some insight into how i'd go about decompressing an XML response in classic ASP. We've been handed some code and asked to get it working: Set oXMLHttp = Server.CreateObject("MSXML2.ServerXMLHTTP") URL = HttpServer + re_domain +…
krisg
  • 796
  • 1
  • 9
  • 24
0
votes
2 answers

AMFPHP and Content-Encoding gzip on Apache

I'm developing a Flash application with Flex and I use amfPHP (V2.2.1) for communicating with the PHP backend. Everything was fine since my web hoster changed from Confixx to Plesk and changed some settings on the web server, so after the change…
LUCiDdev
  • 3
  • 2
0
votes
1 answer

Atmosphere js headers sets parameters - not request headers

I need to disable compression for atmosphere request headers. so instead of: Accept-Encoding: gzip, deflate I want to change this to: Accept-Encoding: identity Here's the headers from the request atmosphere.js creates: Accept …
Rachel
  • 3
  • 2
0
votes
0 answers

nodejs compression doesn't work

I might be missing something, but I can't make my node server compress its static resources when responding. this is how my relevant parts in the server look like: var express = require('express'); var app = express(); app.set('port',…
konfortes
  • 99
  • 1
  • 2
  • 8
0
votes
2 answers

The Js and CSS files are not getting compressing in SAFARI browser

I've compressed all the java scripts and style sheets as an individual files, after compression its about 582 KB. While it is loaded in the web page the chrome browser inspect elements network displays 168 KB, similarly when I browse in safari the…