ColdFusion debug output is returned to Flex apps as part of the ResultEvent (as of beta 3 of CF 7.0.2). Of course, CF debugging must be enabled. This example does a simple text dump of returned debug information:
public function ResultHandler(event:ResultEvent):void
{
Alert.show(mx.utils.ObjectUtil.toString(event.message.headers));
}
Leave a Reply