Использовать remoteObject как в mxml
<mx:Script>
<![CDATA[
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
private function resultHandler(event:ResultEvent):void
{
Alert.show("Back with success");
Alert.show(event.message.toString());
}
private function faultHandler(event:FaultEvent):void
{
Alert.show("Back with Error");
Alert.show(event.message.toString());
}
]]>
</mx:Script>
<mx:RemoteObject id="remoteObject" destination="yourdestination"
showBusyCursor="true"
result="{resultHandler(event)}"
fault="{faultHandler( event )}">
</mx:RemoteObject>
Примечание: вышеуказанный код в Flex3
Надежды, которые помогают