Hello,I am using Flex 4 with LCDS 3. I am having problems with properly
handlingexceptions.I have a simple commit service like;var
commitToken:AsyncToken =_serviceName.serviceControl.commit(); // Commit
the change.commitToken.addResponder(new AsyncResponder(function
(event:ResultEvent,token:Object=null):void{Alert.show("DATA
DELETED");},function
(event:FaultEvent,token:Object=null):void{Alert.show("Save failed: "
+event.fault.faultString,
"Error");_serviceName.serviceControl.revertChanges();}));...