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?
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?
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?