Tagged Questions
The content-encoding tag has no wiki summary.
34
votes
5answers
10k views
Android: HTTP communication should use “Accept-Encoding: gzip”
I've a HTTP communication to a webserver requesting JSON data. I'd like compress this data stream with Content-Encoding: gzip. Is there a way I can set Accept-Encoding: gzip in my HttpClient? The ...
18
votes
5answers
5k views
How can I pre-compress files with mod_deflate in Apache 2.x?
I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rather ...
6
votes
3answers
343 views
How does server side GZipping work?
You might know that HTML related file formats are compressed using GZip compression, server side, (by mod_gzip on Apache servers), and are decompressed by compatible browsers. ("content encoding")
...
5
votes
1answer
3k views
How can I accept gzip-compressed content using LWP::UserAgent?
I am fetching some pages over the Web using Perl's LWP::UserAgent and would like to be as polite as possible. By default, LWP::UserAgent does not seamlessly handle compressed content via gzip. Is ...
4
votes
3answers
1k views
In IIS7, gzipped files do not stay that way
I have configured IIS7 to gzip static content.
http://www.coderjournal.com/2008/04/iis-7-compress-javascript-gzip/
However, the files don't "stay" gzipped.
Here's my use case:
Request test.css ...
4
votes
3answers
720 views
How do HTTP proxy caches decide between serving identity- vs. gzip-encoded resources?
An HTTP server uses content-negotiation to serve a single URL identity- or gzip-encoded based on the client's Accept-Encoding header.
Now say we have a proxy cache like squid between clients and the ...
3
votes
4answers
1k views
Why does Perl's LWP gives me a different encoding than the original website?
Lets say i have this code:
use strict;
use LWP qw ( get );
my $content = get ( "http://www.msn.co.il" );
print STDERR $content;
The error log shows something like ...
3
votes
2answers
923 views
Transparently Handling GZip Encoded content with WWW::Mechanize
I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to get ...
3
votes
4answers
1k views
What content encoding does a Perl CGI script use by default?
I'm modifying a mature CGI application written in Perl and the question of content encoding has come up. The browser reports that the content is iso-8859-1 encoded and the application is declaring ...
2
votes
1answer
111 views
Is it possible to use Content-Encoding: gzip in a HTTP POST request?
I'm trying to upload some files with compression to a server. The files will be fairly large and the server is a standard HTTP server where the interface defines that they're not compressed. Is it ...
2
votes
1answer
90 views
How do I load a javascript library in Rhino, from a server that uses gzip encoding?
In rhino, I'm used to being able to load javascript libraries from a URL, e.g.
load('http://latex.mathoverflow.net/mathjax/MathJax.js')
(This doesn't actually work, unless you provide a ...
2
votes
1answer
1k views
Node.js proxy, dealing with gzip DEcompression
I'm currently working on a proxy server where we in this case have to modify the data (by using regexp) that we push through it.
In most cases it works fine except for websites that use gzip as ...
2
votes
1answer
575 views
sending content-encoding header in django
Hello I want to have a plaintext version of my content available. So I have a separate template for that. I am calling render_to_response with mimetype="text/plain" but i want to tell a browser ...
2
votes
1answer
564 views
How do I differentiate between request and response in an HTTPURLConnection?
Hi I need to evaluate if a server supports gzip compression.
Therefore I want to set gzip as Accept-Encoding in my request and evaluate if the response of the server containts "Content-Encoding: ...
1
vote
3answers
83 views
HTML & CSS: Turn fonts and images into data strings
How can I convert fonts and images (assets in general) to data attributes?
Would assets load faster or slower this way?
1
vote
1answer
136 views
Possible to send HTTP 1.1 Footers from PHP using Transfer-Encoding: chunked?
Having tried and failed to get a manual implementation of chunked Transfer-Encoding with gzipped Content-Encoding working in PHP, I'm now back to using mod_deflate in Apache, which does a nice job.
...
1
vote
0answers
195 views
Does j2me support sending Accept-Encoding and Content-Encoding http header fields?
I'm trying to send a HTTP request from a j2me client. Although I'm setting both Content-Encoding and Accept-Encoding, they never make it to server. Here is code snippet:
HttpConnection conn = ...
1
vote
1answer
1k views
Handling HTTP ContentEncoding “deflate”
What InputStream type should be used to handle URLConnection streams that have HTTP Content-Encoding set to deflate?
For a Content-Encoding of gzip or zip I use a GZIPInputStream, no problem.
For a ...
1
vote
1answer
171 views
EclipseLink and database encoding
I am a developer for a global application, which was deployed in a few countries whose languages were not a problem for us. But now, we're going to Slovakia, and we're having a bit of trouble with ...
1
vote
0answers
433 views
IE's XMLhttpRequest's getResponseHeader(“Content-Length”) absent when Content-Encoded sent
Why won't IE let me see the get the Content-Length header with getResponseHeader()?
I know there the headers are being sent; I can see them with Wireshark. IE just won't let me get them.
If the ...
1
vote
1answer
78 views
Can SVG render partially if gzipped and chunk-transferred?
I have some large, dynamically generated SVGs that are being served over a relatively slow internet connection. I'm trying to optimize them to be viewable as fast as possible. If I set the server to ...
1
vote
0answers
140 views
How can I check the content transfer encoding of incoming emails using Zend framework
How can I detect the content-transfer-encoding of emails in the inbox using Zend framework.
I need to check to make sure whether a message is qyoted printable content so I can run a decode upon it ...
1
vote
4answers
254 views
Encountering encoding issues on linux box, not Windows
I'm running into an encoding issue that has stumped me for a few weeks and nothing seems to work. I have a website that works fine on my local machine, but when I push the jsp files to a Linux box for ...
1
vote
1answer
788 views
Does internet Explorer 7 honour the Vary header by caching properly?
I'm using a technique similar to Rick Strahls example, but have notcied using google's speed tracer that
Resource Caching : @10.88s - The following resources specify a "Vary" header that disables ...
0
votes
1answer
20 views
Can I split a gziped content-encoding across multiple HTTP chunks?
Can I split a gziped content-encoding across multiple chunks? Are there any known implementations that fail with this?
0
votes
0answers
28 views
Extra spaces in e-mail subject using chilkat
We're using Chilkat mail for Visual C++ 8.0. We have a problem with decoding extra spaces in subject for some e-mails. The subject in these e-mails has got few encoded words like (two below):
...
0
votes
1answer
35 views
In which RFC is =xx notation defined?
For form/multipart-data, I've seen input that has the form =[2 to 6 hex chars].
I'm wondering which RFC defines it?
I want to encode non-file form data to a binary char stream so that iconv doesn't ...
0
votes
0answers
302 views
Encoding in JSF 2 + Tomcat 7
I have one form with only one single field. When I submit the form, the value of my field becomes strange. The word Extremação becomes Extremação.
So, I already set UTF-8 encoding in every place on ...
0
votes
1answer
63 views
In Python how to add headers for a file after gzip before writing it
I am trying to open a javascript file, read it, gzip it and then write it back to another file.. able to do all that.. but how can set the "Content-Encoding : gzip" before writing the compressed ...
0
votes
0answers
142 views
Jetty removes Content-Encoding: gzip header
I'm using Jetty 6.1 together with PJL Compressing Filter.
Jetty removes the following header from the response:
Content-Encoding: gzip
This causes that most browsers cannot display the page ...
0
votes
1answer
55 views
Gunzipping Contents of a URL - Python
I'm back. :) Again trying to get the gzipped contents of a URL and gunzip them. This time in Python. The #SERVER section of code is the script I'm using to generate the gzipped data. The data is known ...
0
votes
1answer
88 views
How to get the site content in french language
I have a site whose content is in French language.
Now I want to get these through HttpWebRequest and HttpWebResponse in console application using c#.
public string GetContents(string url)
{
...
0
votes
1answer
498 views
Java: HttpResponse headers never have “Content-Encoding” but do have “Vary: Accept-Encoding”
I'm using the following example: http://www.devdaily.com/java/jwarehouse/commons-httpclient-4.0.3/httpclient/src/examples/org/apache/http/examples/client/ClientGZipContentCompression.java.shtml
While ...
0
votes
2answers
618 views
Why does ob_start('ob_gzhandler') break this website?
I've got a site that throws a Content Encoding Error in the browser if a ob_start('ob_gzhandler') is present. If I remove the statement, it runs fine.
The site runs off the same framework, server ...
0
votes
3answers
1k views
Node.js proxy, dealing with gzip compression
I'm currently working on a proxy server where we in this case have to modify the data (by using regexp) that we push through it.
In most cases it works fine except for websites that use gzip as ...
0
votes
3answers
111 views
Combine two content encodings sections in a single page
I developed a web application that allows users to modify existing web pages.
When a user type a url of an existing web page, I read the content of this page and using an ajax call, i display the ...
0
votes
2answers
303 views
Reasons why gzipped content might not be grokked by the browser
I'm attempting to serve static resources (css and javascript) as cached gzipped files for performance reasons.
The pages look gzipped when rendered, the Content-Encoding is correctly set to gzip ...
0
votes
1answer
44 views
Media Encoding
I have to choose methods for digitizing and encoding media for a project which collects media from a variety of sources.
What are the open media encoding standards I should consider?
What could be the ...
0
votes
2answers
533 views
Can you translate php function quoted_printable_decode() to an NSString-based, objective-C function / category method?
In http://php.net/quoted_printable_decode, I found ways to do it using preg_replace. Anyone who knows any code that could convert a normal NSString to something RFC 2045 section 6.7?
Thanks in ...
0
votes
2answers
2k views
Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website?
In an oscommerce site I have the following:
Server response = Content-type: text/html;charset=UTF-8
and I want: Content-type: text/html;charset=ISO-8859-1
How and where do I set this up.
Html ...
0
votes
3answers
484 views
Why do Umlauts and special characters not show up correctly in my Grails pages?
How do I make sure the correct encoding (UTF-8) is used by Grails?
0
votes
1answer
989 views
How to get the charset from an HTML page
I'm trying to get the charset attribute in any HTML meta tag.
(ie.< meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >)
Is there any way to do that in C++ under linux. I was ...