com.FlashDynamix.Xml
class XmlRemoting
Object
|
+--com.FlashDynamix.core.Base
|
+--com.FlashDynamix.Xml.XmlRemoting
All Known Subclasses: XmlRemotingDebugclass XmlRemoting extends Base
Field Summary
Stops a call of a same command name when calling another
Seconds wait between calls on case of error
Error call attempts maximum
Method Summary
call (
url: String, name: String, query: Object, callMethod: String, compressed: Boolean
): LoadVars
Prepares and sends an XML call
Stops all current XML calls in transaction
Stops a specific named XML call
Methods inherited from class com.FlashDynamix.core.Base
Field Documentation
Method Documentation
call
function call (
url: String,
name: String,
query: Object,
callMethod: String,
compressed: Boolean): LoadVars
name: String,
query: Object,
callMethod: String,
compressed: Boolean): LoadVars
Prepares and sends an XML call
Prepares and sends an XML call containing a querystring using an object of named query parameters i.e.
myObj = new Object();
myObj.param1 = "value1";
myObj.param2 = "value2";
Translates to = "?param1=value1¶m2=value2
The querstring can also be hard coded into the XMLURL parameter
The name is used to identify the response when performing simaltaneous data calls Call Method can be either GET or POST Compressed is wether the LZ77 Algorithim has been used for compressing the XML data more information regarding this can be found at http://www.strille.net/tutorials/FlashXMLCompressor/index.php
myObj = new Object();
myObj.param1 = "value1";
myObj.param2 = "value2";
Translates to = "?param1=value1¶m2=value2
The querstring can also be hard coded into the XMLURL parameter
The name is used to identify the response when performing simaltaneous data calls Call Method can be either GET or POST Compressed is wether the LZ77 Algorithim has been used for compressing the XML data more information regarding this can be found at http://www.strille.net/tutorials/FlashXMLCompressor/index.php
- XmlRemoting.as, Last Modified: 3/03/2007 7:05:28 PM