If I turn on setGzipCompressing in the client, the server blows up with:

Failed to read XML-RPC request: Invalid byte 1 of 1-byte UTF-8 sequence.

Both ends are using the latest release of XMLRPC and Java 1.6.0_05. Here's what I have in the server:

    config.setEncoding("UTF-8");
    config.setEnabledForExceptions(true);
    config.setKeepAliveEnabled(true);
    config.setContentLengthOptional(true);

And here is what I have in the client:

    config.setEncoding("UTF-8");
    config.setEnabledForExtensions(true);
    config.setContentLengthOptional(true);
    config.setGzipCompressing(true);
    config.setGzipRequesting(true);
    config.setServerURL(server);

If I remove the call to setGzipCompressing in the client, all is well. If I add the call, I get the error.

Is this a known bug?

--
Alan Burlison
--

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to