1.
Which object is the returned XML data placed into after a Web service operation executes?
2.
Which property of the HTTPService class references the data returned from a request?
3.
Which protocol supports the use of server-pushed messaging with the Flex Message Service and the Data Management Service?
4.
Which HTTPService method call will invoke a service request?
5.
You have used a RemoteObject object to call a public method of a Java class that is hosted by Flex Data
Services. The signature of the Java method being called is:
public List getData()
You have declared an ActionScript method named resultHandler() with this signature:
private function resultHandler(event:ResultEvent):void
When the resultHandler() method is called from the RemoteObject result event, you want to save the returned data to a previously declared ArrayCollection named myCollection.
Which is the correct syntax?
6.
Which Flex Data Services component allows a Flex client to access back-end data by invoking remote methods of Java objects and ColdFusion components?
7.
You have configured the proxy service with this destination:

http://127.0.0.1/flex/assets/*

Which HTTPService object will successfully use the proxy service to retrieve data?
8.
Which metadata tag marks a particular ActionScript data transfer object to be watched by the Data Management Service?
9.
Which property of the HTTPService component allows you to use parameter binding to pass query parameters to an HTTP Service?
10.
Given this XML variable:
var myData:XML =
JoeMary name=Shipping>AliceHarry

And this ActionScript statement:
returnedXML = myData.dept.(@name == Marketing)
What is the value of returnedXML?