Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gzip support #32

Open
ghost opened this issue Jan 10, 2014 · 1 comment
Open

gzip support #32

ghost opened this issue Jan 10, 2014 · 1 comment
Labels
Milestone

Comments

@ghost
Copy link

ghost commented Jan 10, 2014

In case of:
XMLRPCClient client = new XMLRPCClient(url)); client.setCustomHttpHeader("Accept-Encoding", "gzip");

in the XMLRPCClient.java should handle it with:

Existing Line #689: istream = http.getInputStream();
if ("gzip".equals(conn.getContentEncoding()))
{
istream = new GZIPInputStream(istream);
}

@timroes timroes added this to the 2.0.0 milestone Jan 31, 2015
@timroes
Copy link
Collaborator

timroes commented Jan 31, 2015

Will be solved in 2.0.0 by using OkHttp as an satisfying HTTP library.

@gturri gturri added the Feature label Oct 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants