<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Flash-db</title>
	<atom:link href="http://flash-db.com/Main/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flash-db.com/Main</link>
	<description>Dynamic Flash database, remoting and webservices community</description>
	<lastBuildDate>Tue, 29 Nov 2011 16:03:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on PureMVC demo application by Cliff Hall</title>
		<link>http://flash-db.com/Main/2011/10/13/puremvc-demo-application/#comment-336</link>
		<dc:creator>Cliff Hall</dc:creator>
		<pubDate>Tue, 29 Nov 2011 16:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=139#comment-336</guid>
		<description>Hi Jorge,

Thanks for putting out this demo. 

One suggestion, though. Move the URLLoader code out of the QuizProxy constructor and into onRegister(). The reason is you want your actors to be fully registered before they do anything that could result in a &#039;conversation&#039; taking place (e.g. a mediator being interested in an outbound note and wanting to retrieve the proxy that sent the note). 

In your case you may not be sending out a note, but the general habit should be to do pretty much everything in onRegister() rather than the constructor to avoid any possibility of timing issues.

public class QuizProxy extends Proxy implements IProxy {
    public static const NAME:String = &quot;QuizProxy&quot;; (...)
    public function QuizProxy() {
    super(NAME);
}

override public function onRegister():void
{
    var ldr:URLLoader = new URLLoader();
    ldr.dataFormat = URLLoaderDataFormat.TEXT;
    ldr.addEventListener(Event.COMPLETE, onLoadXML);
    ldr.load(new URLRequest(&quot;com/flashdb/quiz/model/questions.xml&quot;));
}

Cheers,
-=Cliff&gt;</description>
		<content:encoded><![CDATA[<p>Hi Jorge,</p>
<p>Thanks for putting out this demo. </p>
<p>One suggestion, though. Move the URLLoader code out of the QuizProxy constructor and into onRegister(). The reason is you want your actors to be fully registered before they do anything that could result in a &#8216;conversation&#8217; taking place (e.g. a mediator being interested in an outbound note and wanting to retrieve the proxy that sent the note). </p>
<p>In your case you may not be sending out a note, but the general habit should be to do pretty much everything in onRegister() rather than the constructor to avoid any possibility of timing issues.</p>
<p>public class QuizProxy extends Proxy implements IProxy {<br />
    public static const NAME:String = &#8220;QuizProxy&#8221;; (&#8230;)<br />
    public function QuizProxy() {<br />
    super(NAME);<br />
}</p>
<p>override public function onRegister():void<br />
{<br />
    var ldr:URLLoader = new URLLoader();<br />
    ldr.dataFormat = URLLoaderDataFormat.TEXT;<br />
    ldr.addEventListener(Event.COMPLETE, onLoadXML);<br />
    ldr.load(new URLRequest(&#8220;com/flashdb/quiz/model/questions.xml&#8221;));<br />
}</p>
<p>Cheers,<br />
-=Cliff&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsley demo application by Enrique Maritnez</title>
		<link>http://flash-db.com/Main/2011/05/23/parsley-demo-application/#comment-330</link>
		<dc:creator>Enrique Maritnez</dc:creator>
		<pubDate>Mon, 14 Nov 2011 03:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=136#comment-330</guid>
		<description>Hola Jorge,

Tengo unas dudas pero me gustaria contactarte via correo electronico ¿Es posible?. Gracias de antemano
Enrique Martinez</description>
		<content:encoded><![CDATA[<p>Hola Jorge,</p>
<p>Tengo unas dudas pero me gustaria contactarte via correo electronico ¿Es posible?. Gracias de antemano<br />
Enrique Martinez</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsley demo application by Jorge Solis</title>
		<link>http://flash-db.com/Main/2011/05/23/parsley-demo-application/#comment-327</link>
		<dc:creator>Jorge Solis</dc:creator>
		<pubDate>Sat, 12 Nov 2011 12:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=136#comment-327</guid>
		<description>If you mean Java on back-end, this is a service and doesn&#039;t matter which language you use on back-end, you just call a service and get some data.</description>
		<content:encoded><![CDATA[<p>If you mean Java on back-end, this is a service and doesn&#8217;t matter which language you use on back-end, you just call a service and get some data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsley demo application by LibraBorn</title>
		<link>http://flash-db.com/Main/2011/05/23/parsley-demo-application/#comment-326</link>
		<dc:creator>LibraBorn</dc:creator>
		<pubDate>Sat, 12 Nov 2011 05:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=136#comment-326</guid>
		<description>I want to know how to use parsley with Java</description>
		<content:encoded><![CDATA[<p>I want to know how to use parsley with Java</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Robotlegs demo application by Ernesto Quezada</title>
		<link>http://flash-db.com/Main/2011/10/22/robotlegs-demo-application/#comment-319</link>
		<dc:creator>Ernesto Quezada</dc:creator>
		<pubDate>Wed, 09 Nov 2011 17:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=146#comment-319</guid>
		<description>I love RobotLegs. I&#039;d say it&#039;s by far the best framework out there, however, I must accept I haven&#039;t used much other frameworks (apart from PureMVC which I think is good but still not as good as RobotLegs).
I&#039;ve used RobotLegs to create games and for example the S in MVCS (so, the services as you mentioned it) work really nicely to connect to Facebook or store data in SharedObjects. Perfect to &#039;communicate with the outside word&#039; as you said.
Another thing I really love is the event bus, it works really good and helps decoupling.
I&#039;ll study your example a bit more when at home. Thanks for putting it together!  :)</description>
		<content:encoded><![CDATA[<p>I love RobotLegs. I&#8217;d say it&#8217;s by far the best framework out there, however, I must accept I haven&#8217;t used much other frameworks (apart from PureMVC which I think is good but still not as good as RobotLegs).<br />
I&#8217;ve used RobotLegs to create games and for example the S in MVCS (so, the services as you mentioned it) work really nicely to connect to Facebook or store data in SharedObjects. Perfect to &#8216;communicate with the outside word&#8217; as you said.<br />
Another thing I really love is the event bus, it works really good and helps decoupling.<br />
I&#8217;ll study your example a bit more when at home. Thanks for putting it together!  <img src='http://flash-db.com/Main/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Robotlegs demo application by Paper Shredder</title>
		<link>http://flash-db.com/Main/2011/10/22/robotlegs-demo-application/#comment-318</link>
		<dc:creator>Paper Shredder</dc:creator>
		<pubDate>Wed, 09 Nov 2011 12:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=146#comment-318</guid>
		<description>Thanks for the post! Really interesting with some great advice, tips and insight. 
I found this tutorial video and thought it might be of some use! Thanks again

http://johnlindquist.com/2009/11/18/robotlegs-hello-world-video-tutorial/</description>
		<content:encoded><![CDATA[<p>Thanks for the post! Really interesting with some great advice, tips and insight.<br />
I found this tutorial video and thought it might be of some use! Thanks again</p>
<p><a href="http://johnlindquist.com/2009/11/18/robotlegs-hello-world-video-tutorial/" rel="nofollow">http://johnlindquist.com/2009/11/18/robotlegs-hello-world-video-tutorial/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Robotlegs demo application by Lucas</title>
		<link>http://flash-db.com/Main/2011/10/22/robotlegs-demo-application/#comment-294</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Sun, 23 Oct 2011 15:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=146#comment-294</guid>
		<description>So interesting post, clear and usefull!
Thanks for the code</description>
		<content:encoded><![CDATA[<p>So interesting post, clear and usefull!<br />
Thanks for the code</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flex SDK 4.5 mobile roadmap by Wilon</title>
		<link>http://flash-db.com/Main/2011/05/19/flex-sdk-4-5-mobile-roadmap/#comment-233</link>
		<dc:creator>Wilon</dc:creator>
		<pubDate>Wed, 28 Sep 2011 16:49:48 +0000</pubDate>
		<guid isPermaLink="false">http://flash-db.com/Main/?p=219#comment-233</guid>
		<description>Al ver este tipo de cosas, no puedo guardar mis sentimientos...
I love (&quot;AS3 FLEX and FLASH&quot;);</description>
		<content:encoded><![CDATA[<p>Al ver este tipo de cosas, no puedo guardar mis sentimientos&#8230;<br />
I love (&#8220;AS3 FLEX and FLASH&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsley demo application by Jorge Solis</title>
		<link>http://flash-db.com/Main/2011/05/23/parsley-demo-application/#comment-182</link>
		<dc:creator>Jorge Solis</dc:creator>
		<pubDate>Fri, 16 Sep 2011 16:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=136#comment-182</guid>
		<description>Hi Sheejo

The file is an fxp file, that many mail clients (and probably firewalls) blocks don&#039;t know why. fxp is the extension for Flex Project, and basically is like a zip file that you can import directly from Flash Builder. The URL for the download is http://www.flash-db.com/Tutorials/download.php?id=210 , if you&#039;re in an office behind a firewall, please try from your home or a different machine</description>
		<content:encoded><![CDATA[<p>Hi Sheejo</p>
<p>The file is an fxp file, that many mail clients (and probably firewalls) blocks don&#8217;t know why. fxp is the extension for Flex Project, and basically is like a zip file that you can import directly from Flash Builder. The URL for the download is <a href="http://www.flash-db.com/Tutorials/download.php?id=210" rel="nofollow">http://www.flash-db.com/Tutorials/download.php?id=210</a> , if you&#8217;re in an office behind a firewall, please try from your home or a different machine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsley demo application by Sheejo Rapheal</title>
		<link>http://flash-db.com/Main/2011/05/23/parsley-demo-application/#comment-181</link>
		<dc:creator>Sheejo Rapheal</dc:creator>
		<pubDate>Fri, 16 Sep 2011 16:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=136#comment-181</guid>
		<description>Hi Jorge

I am very new to Parsley and trying to download the demo code, I am getting an error says &quot;The XML page cannot be displayed 
Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later. 
--------------------------------------------------------------------------------

An invalid character was found in text content. Error processing resource &#039;http://www.flash-db.com/Tutorials/download.php?i... 
&quot;. 

Please help me. If you have any sample code with Flex Parsley + Java, please send to me.
Thanks
Sheejo</description>
		<content:encoded><![CDATA[<p>Hi Jorge</p>
<p>I am very new to Parsley and trying to download the demo code, I am getting an error says &#8220;The XML page cannot be displayed<br />
Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>An invalid character was found in text content. Error processing resource &#8216;http://www.flash-db.com/Tutorials/download.php?i&#8230;<br />
&#8220;. </p>
<p>Please help me. If you have any sample code with Flex Parsley + Java, please send to me.<br />
Thanks<br />
Sheejo</p>
]]></content:encoded>
	</item>
</channel>
</rss>

