This library defines classes which implement the client side of the XMLRPC standard. The great thing about this library is that it's very powerful but implmentation is very simple.
For more information about the XMLRPC standard, visit http://www.xmlrpc.com
Classes
class Connection([server:String])
The main class used for XMLRPC communication. As of now, it is the only class that needs to be accessed by the end-coder. It manages the XML creation, sending, and parsing.
var rpc1 = XMLRPC.Connection();
var rpc2 = XMLRPC.Connection('http://www.myserver.com');
More Information
class Method()
Class used to create an XML-based method call. It is wrapped by
Connection
and is only used to create the vaild XML.
Connection is responsible for sending this XML to the XMLRPC server.
var m = XMLRPC.Method();
More Information
class Parser()
Class used to unmarshall a valid XMLRPC response to a Flash data object. It is wrapped by
Connection
and is only used to parse vaild XML.
var p = XMLRPC.Parser();
More Information
Constants
XMLRPC.globals.SIMPLE_TYPES
XMLRPC.types.STRING
XMLRPC.types.CDATA
XMLRPC.types.i4
XMLRPC.types.INT
XMLRPC.types.BOOLEAN
XMLRPC.types.DOUBLE
XMLRPC.types.DATETIME
XMLRPC.types.BASE64
XMLRPC.types.STRUCT
XMLRPC.types.ARRAY
Last Updated Dec, 3 2004