* @param params Parameters to pass to the method named by <var>method</var>.
* @return The return value from the method named by <var>method</var>.
* @throws Exception If any error occurs.
*/
public Object callLocalServerManager(int port, String user, String password, String method, List params) throws Exception {
XmlRpcClientLite local = new XmlRpcClientLite("localhost", port);
local.setBasicAuthentication(user, password);
return local.execute(method, new Vector(params));
}