Skip to content

gzip support #32

@ghost

Description

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);
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions