How would I debug Flex 3 databinding? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:26:17Zhttp://stackoverflow.com/feeds/question/996457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/996457/how-would-i-debug-flex-3-databinding0How would I debug Flex 3 databinding?Stefan Kendall2009-06-15T14:34:56Z2009-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><mx:HTTPService id = "licenseService" resultFormat="e4x" url="http://localhost/licenseTest.xml" /></code></p>
<p>with </p>
<p><code><mx:DataGrid horizontalCenter="0" width="476" top="50" dataProvider="{licenseService.lastResult.license}"></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#9965932Answer by Hrundik for How would I debug Flex 3 databinding?Hrundik2009-06-15T14:59:25Z2009-06-15T14:59:25Z<p>Add result event handler for HTTP Service:</p>
<pre><code><mx:HTTPService id = "licenseService" resultFormat="e4x" url="http://localhost/licenseTest.xml" result="licenseService_resultHandler(event)" />
</code></pre>
<p>And define the handler inside <code><mx:Script></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>