Package org.apache.xmlrpc.client
Interface XmlRpcHttpClientConfig
-
- All Superinterfaces:
XmlRpcConfig
,XmlRpcHttpConfig
,XmlRpcHttpRequestConfig
,XmlRpcRequestConfig
,XmlRpcStreamConfig
,XmlRpcStreamRequestConfig
- All Known Implementing Classes:
XmlRpcClientConfigImpl
public interface XmlRpcHttpClientConfig extends XmlRpcHttpRequestConfig
Extension ofXmlRpcClientConfig
for HTTP based transport. Provides details like server URL, user credentials, and so on.
-
-
Field Summary
-
Fields inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig
UTF8_ENCODING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URL
getServerURL()
Returns the HTTP servers URL.java.lang.String
getUserAgent()
Returns the user agent header to use-
Methods inherited from interface org.apache.xmlrpc.XmlRpcConfig
getTimeZone, isEnabledForExtensions
-
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcHttpConfig
getBasicEncoding, isContentLengthOptional
-
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcHttpRequestConfig
getBasicPassword, getBasicUserName, getConnectionTimeout, getReplyTimeout
-
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig
getEncoding
-
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcStreamRequestConfig
isEnabledForExceptions, isGzipCompressing, isGzipRequesting
-
-
-
-
Method Detail
-
getServerURL
java.net.URL getServerURL()
Returns the HTTP servers URL.- Returns:
- XML-RPC servers URL; for example, this may be the URL of a servlet
-
getUserAgent
java.lang.String getUserAgent()
Returns the user agent header to use- Returns:
- the http user agent header to set when doing xmlrpc requests
-
-