public static function fromXML(xml:XMLNode):Array
Extract and marshall the XML-RPC response to Flash types.
Parameters
| xml:XMLNode — The XML containing the message response
|
Returns
| 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.
|
public static function toXML(parent:XMLNode, method:String, params:Array):XMLNode
The marshalling process, accepting a block of XML, a string description of the remote method,
and an array of flash type parameters.
Parameters
| parent:XMLNode |
|
| method:String |
|
| params:Array |
Returns
| XMLNode — XMLNode containing the XML marshalled result
|