java.lang.Object
org.apache.xmlrpc.XmlRpcClient
org.apache.xmlrpc.secure.SecureXmlRpcClient
- All Implemented Interfaces:
- org.apache.xmlrpc.XmlRpcHandler
- public class SecureXmlRpcClient
- extends org.apache.xmlrpc.XmlRpcClient
A multithreaded, reusable XML-RPC client object. Use this if you need a full-grown
HTTP client (e.g. for Proxy and Cookies support). If you don't need that, XmlRpcClientLite
may work better for you.
| Nested classes inherited from class org.apache.xmlrpc.XmlRpcClient |
|
| Methods inherited from class org.apache.xmlrpc.XmlRpcClient |
createTransport, execute, execute, execute, executeAsync, executeAsync, executeAsync, getMaxThreads, getURL, setBasicAuthentication, setMaxThreads |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SecureXmlRpcClient
public SecureXmlRpcClient(java.net.URL url)
- Construct a XML-RPC client with this URL.
SecureXmlRpcClient
public SecureXmlRpcClient(java.lang.String url)
throws java.net.MalformedURLException
- Construct a XML-RPC client for the URL represented by this String.
SecureXmlRpcClient
public SecureXmlRpcClient(java.lang.String hostname,
int port)
throws java.net.MalformedURLException
- Construct a XML-RPC client for the specified hostname and port.
setup
public void setup()
throws java.lang.Exception
- This allows us to setup
main
public static void main(java.lang.String[] args)
throws java.lang.Exception
- Just for testing.