How to capture mx.rpc errors to a log file

2015-03-31 Thread robert_dodier
Hi, I am working with Flex and BlazeDS. The client sends a request for data to display once a minute. If there is an interruption in the Internet connection (e.g., wifi is down temporarily) then the client displays a pop-up window with "RPC Error" in the title bar and "Send failed" in the body of

Re: How to capture mx.rpc errors to a log file

2015-03-31 Thread Alex Harui
There is a Logging class in Flex. Not sure if it will help or not. See mx.logging package. On 3/31/15, 3:31 PM, "robert_dodier" wrote: >Hi, > >I am working with Flex and BlazeDS. The client sends a request for data to >display once a minute. If there is an interruption in the Internet >connect

Re: How to capture mx.rpc errors to a log file

2015-04-01 Thread robert_dodier
Alex Harui wrote > There is a Logging class in Flex. Not sure if it will help or not. See > mx.logging package. Thanks, Alex. I am looking at the documentation for the logging system and it appears I need to construct a custom logger which has an event listener for FaultEvents. I'll give it a tr