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 (
url: String,
name: String,
params: Object,
method: String): Void
name: String,
params: Object,
method: 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 simaltaneuos data calls
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 simaltaneuos data calls
- Overrides:XmlRemoting.call in class XmlRemoting
- XmlRemotingDebug.as, Last Modified: 18/03/2007 11:41:42 PM