helma.xmlrpc.applet
Class SimpleXmlRpcClient

java.lang.Object
  |
  +--helma.xmlrpc.applet.SimpleXmlRpcClient

public class SimpleXmlRpcClient
extends java.lang.Object

A simple XML-RPC client


Constructor Summary
SimpleXmlRpcClient(java.lang.String url)
          Construct a XML-RPC client for the URL represented by this String.
SimpleXmlRpcClient(java.lang.String hostname, int port)
          Construct a XML-RPC client for the specified hostname and port.
SimpleXmlRpcClient(java.net.URL url)
          Construct a XML-RPC client with this URL.
 
Method Summary
 java.lang.Object execute(java.lang.String method, java.util.Vector params)
           
static void setDebug(boolean val)
          Switch debugging output on/off.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimpleXmlRpcClient

public SimpleXmlRpcClient(java.net.URL url)
Construct a XML-RPC client with this URL.

SimpleXmlRpcClient

public SimpleXmlRpcClient(java.lang.String url)
                   throws java.net.MalformedURLException
Construct a XML-RPC client for the URL represented by this String.

SimpleXmlRpcClient

public SimpleXmlRpcClient(java.lang.String hostname,
                          int port)
                   throws java.net.MalformedURLException
Construct a XML-RPC client for the specified hostname and port.
Method Detail

setDebug

public static void setDebug(boolean val)
Switch debugging output on/off.

execute

public java.lang.Object execute(java.lang.String method,
                                java.util.Vector params)
                         throws XmlRpcException,
                                java.io.IOException