How would I debug Flex 3 databinding? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:26:17Z http://stackoverflow.com/feeds/question/996457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/996457/how-would-i-debug-flex-3-databinding 0 How would I debug Flex 3 databinding? Stefan Kendall 2009-06-15T14:34:56Z 2009-06-15T14:59:25Z <p>Hi,</p> <p>I'm trying to connect a datagrid to an HTTPService via a simple external XML document, and this is failing. How would I go about debugging where the problem is arising?</p> <p>I'm using the following: </p> <p><code>&lt;mx:HTTPService id = "licenseService" resultFormat="e4x" url="http://localhost/licenseTest.xml" /&gt;</code></p> <p>with </p> <p><code>&lt;mx:DataGrid horizontalCenter="0" width="476" top="50" dataProvider="{licenseService.lastResult.license}"&gt;</code></p> <p>I'm relatively new to flex, so basic help would be appreciated.</p> http://stackoverflow.com/questions/996457/how-would-i-debug-flex-3-databinding/996593#996593 2 Answer by Hrundik for How would I debug Flex 3 databinding? Hrundik 2009-06-15T14:59:25Z 2009-06-15T14:59:25Z <p>Add result event handler for HTTP Service:</p> <pre><code>&lt;mx:HTTPService id = "licenseService" resultFormat="e4x" url="http://localhost/licenseTest.xml" result="licenseService_resultHandler(event)" /&gt; </code></pre> <p>And define the handler inside <code>&lt;mx:Script&gt;</code>:</p> <pre><code>private function licenseService_resultHandler(event:ResultEvent):void { trace("Result:", event.result); } </code></pre> <p>You can place a breakpoint inside this method and start debugging the data that comes from the server</p>