Vector params)
throws TurbineException
{
try
{
XmlRpcClient client = new XmlRpcClient ( url );
client.setBasicAuthentication(username, password);
return client.execute(methodName, params);
}
catch (Exception e)
{
throw new TurbineException("XML-RPC call failed", e);
}