Package | org.igniterealtime.xiff.data.rpc |
Class | public class XMLRPC |
Inheritance | XMLRPC ![]() |
See also
Method | Defined By | ||
---|---|---|---|
fromXML(xml:XML):Array [static]
Extract and marshall the XML-RPC response to Flash types. | XMLRPC | ||
toXML(parent:XML, method:String, params:Array):XML [static]
The marshalling process, accepting a block of XML, a string description of the remote method,
and an array of flash type parameters. | XMLRPC |
fromXML | () | method |
public static function fromXML(xml:XML):Array
Extract and marshall the XML-RPC response to Flash types.
Parameters
xml:XML — The XML containing the message response
|
Array — Mixed object of either an array of results from the method call or a fault.
If the result is a fault, "result.isFault" will evaulate as true.
|
toXML | () | method |
public static function toXML(parent:XML, method:String, params:Array):XML
The marshalling process, accepting a block of XML, a string description of the remote method, and an array of flash type parameters.
Parameters
parent:XML | |
method:String | |
params:Array |
XML — XML containing the XML marshalled result
|