org.apache.xmlrpc
Class XmlRpcClientLite
java.lang.Object
|
+--org.apache.xmlrpc.XmlRpcClient
|
+--org.apache.xmlrpc.XmlRpcClientLite
- All Implemented Interfaces:
- XmlRpcHandler
- public class XmlRpcClientLite
- extends XmlRpcClient
A multithreaded, reusable XML-RPC client object. This version uses a homegrown
HTTP client which can be quite a bit faster than java.net.URLConnection, especially
when used with XmlRpc.setKeepAlive(true).
- Author:
- Hannes Wallnoefer
Field Summary |
(package private) static java.lang.String |
auth
|
Constructor Summary |
XmlRpcClientLite(java.lang.String url)
Construct a XML-RPC client for the URL represented by this String. |
XmlRpcClientLite(java.lang.String hostname,
int port)
Construct a XML-RPC client for the specified hostname and port. |
XmlRpcClientLite(java.net.URL url)
Construct a XML-RPC client with this URL. |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
auth
static java.lang.String auth
XmlRpcClientLite
public XmlRpcClientLite(java.net.URL url)
- Construct a XML-RPC client with this URL.
XmlRpcClientLite
public XmlRpcClientLite(java.lang.String url)
throws java.net.MalformedURLException
- Construct a XML-RPC client for the URL represented by this String.
XmlRpcClientLite
public XmlRpcClientLite(java.lang.String hostname,
int port)
throws java.net.MalformedURLException
- Construct a XML-RPC client for the specified hostname and port.
getWorker
XmlRpcClient.Worker getWorker(boolean async)
throws java.io.IOException
- Overrides:
getWorker
in class XmlRpcClient
main
public static void main(java.lang.String[] args)
throws java.lang.Exception
- Just for testing.
Copyright © 1999-2002 Apache Software Foundation. All Rights Reserved.