org.apache.xmlrpc.common

Interface XmlRpcStreamRequestConfig

All Superinterfaces:
XmlRpcConfig, XmlRpcRequestConfig, XmlRpcStreamConfig
Known Subinterfaces:
XmlRpcHttpClientConfig, XmlRpcHttpRequestConfig
Known Implementing Classes:
RequestData, XmlRpcClientConfigImpl, XmlRpcHttpRequestConfigImpl

public interface XmlRpcStreamRequestConfig
extends XmlRpcStreamConfig, XmlRpcRequestConfig

Interface of a client configuration for a transport, which is implemented by writing to a stream.

Fields inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig

UTF8_ENCODING

Method Summary

boolean
isEnabledForExceptions()
Returns, whether the response should contain a "faultCause" element in case of errors.
boolean
isGzipCompressing()
Returns, whether the request stream is being compressed.
boolean
isGzipRequesting()
Returns, whether compression is requested for the response stream.

Methods inherited from interface org.apache.xmlrpc.XmlRpcConfig

getTimeZone, isEnabledForExtensions

Methods inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig

getEncoding

Method Details

isEnabledForExceptions

public boolean isEnabledForExceptions()
Returns, whether the response should contain a "faultCause" element in case of errors. The "faultCause" is an exception, which the server has trapped and written into a byte stream as a serializable object.

isGzipCompressing

public boolean isGzipCompressing()
Returns, whether the request stream is being compressed. Note, that the response stream may still be uncompressed.
Returns:
Whether to use Gzip compression or not. Defaults to false.

isGzipRequesting

public boolean isGzipRequesting()
Returns:
Whether to use Gzip compression or not. Defaults to false.

Copyright © 2001-2007 Apache Software Foundation. All Rights Reserved.