Package org.apache.xmlrpc

Examples of org.apache.xmlrpc.XmlRpcClientLite.execute()


   * @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));
  }

  /** Shut down and exit.
   *
   * @return Zero.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.