com.FlashDynamix.Xml
class XmlRemotingDebug
Object
|
+--com.FlashDynamix.core.Base
|
+--com.FlashDynamix.Xml.XmlRemoting
|
+--com.FlashDynamix.Xml.XmlRemotingDebug
class XmlRemotingDebug extends XmlRemoting
Fields inherited from class com.FlashDynamix.Xml.XmlRemoting
Methods inherited from class com.FlashDynamix.Xml.XmlRemoting
Methods inherited from class com.FlashDynamix.core.Base
Method Documentation
call
public function call (
XMLURL: String,
name: String,
params: Object,
callMethod: String): Void
name: String,
params: Object,
callMethod: String): Void
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
- Overrides:XmlRemoting.call in class XmlRemoting
- XmlRemotingDebug.as, Last Modified: 3/03/2007 6:46:18 PM