Does anyone have an example of how to handle a request timeout for a remote data service?
I have a RemoteObject in my app and it has a requestTimeout property. Does this dispatch an event when the timeout occurs? <mx:RemoteObject id="myService" requestTimeout="10" endpoint="http://localhost" destination="TestService" fault="onFault(event);" showBusyCursor="true"> I could create a timer that is started when the invoke event is fired, but what would the point of the requestTimeout property be then?