import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
[Bindable]
private var contactData:ArrayCollection;
[Bindable]
private var helloData:String;
private function contactsResultHandler(event:ResultEvent):void
{
contactData = event.result as ArrayCollection;
}
private function helloResultHandler(event:ResultEvent):void
{
helloData = event.result as String;
}
private function faultHandler(event:FaultEvent):void
{
Alert.show(event.fault.faultString, event.fault.faultCode);
}