Name

xmlrpc

Synopsis

LZX: xmlrpc
JavaScript: xmlrpc
Type: Class
Access: public
Topic: Components.RPC
Declared in: lps/components/rpc/xmlrpc.lzx

Description

A class to call XML-RPC services.

Superclass Chain

node (LzNode) » rpc » xmlrpc

Known Subclasses

Details

Properties (1)

service
<attribute name="service" type="string" value="$once{null}" />
public var service : String;
(Required) XML-RPC service URL. The URL must be http.

Methods (1)

load()
<method name="load" />
public function load();
Load the object. If successful, this.proxy is set to an object with remote APIs.

LZX Synopsis

<class name="xmlrpc" extends=" rpc ">
  <attribute name=" service " type="string" value="$once{null}" />
  <method name=" load " />
</class>

JavaScript Synopsis

public xmlrpc extends  rpc  {
  public var service  : String;
  prototype public function load ();
}