<?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 on: Building a medium to large scale Flex App using Cairngorm (Part 4)</title>
	<atom:link href="http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/</link>
	<description>We design &#38; build outstanding websites, desktop and mobile software applications</description>
	<lastBuildDate>Tue, 08 Nov 2011 22:37:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jon</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-853</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 01 Apr 2009 18:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-853</guid>
		<description>@kwame

Unfortunately I am not a Java developer so the spring/Flamingo side is a little of a dark art to me, the guys I work with use Seam with Flamingo which has worked well. As for the Flex/Cairngorm side of things my tutorials provide a fairly concise tour of using these technologies together. What I do plan to do shortly (when time permits) is write up using the Mate Framework (see http://mate.asfusion.com for details) which is the architecture framework I have been using recently and has been a really positive experience, especially through it&#039;s use of dependancy injection.</description>
		<content:encoded><![CDATA[<p>@kwame</p>
<p>Unfortunately I am not a Java developer so the spring/Flamingo side is a little of a dark art to me, the guys I work with use Seam with Flamingo which has worked well. As for the Flex/Cairngorm side of things my tutorials provide a fairly concise tour of using these technologies together. What I do plan to do shortly (when time permits) is write up using the Mate Framework (see <a href="http://mate.asfusion.com" rel="nofollow">http://mate.asfusion.com</a> for details) which is the architecture framework I have been using recently and has been a really positive experience, especially through it&#8217;s use of dependancy injection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwame</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-857</link>
		<dc:creator>kwame</dc:creator>
		<pubDate>Wed, 01 Apr 2009 15:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-857</guid>
		<description>Can you make a tutorial which will be a kind of step by step tutorial on
Flexbulder3/cairngorm/spring/Flamingo integration tutorial?
Please I&#039;m waiting for your answer.
Kwame</description>
		<content:encoded><![CDATA[<p>Can you make a tutorial which will be a kind of step by step tutorial on<br />
Flexbulder3/cairngorm/spring/Flamingo integration tutorial?<br />
Please I&#8217;m waiting for your answer.<br />
Kwame</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwame</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-849</link>
		<dc:creator>kwame</dc:creator>
		<pubDate>Fri, 27 Mar 2009 13:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-849</guid>
		<description>I&#039;m enjoying your tutorials.
Thank you.
But When will you publish the next tutorials in same the field? can you email me to tell me when it will ready?
Kwame.</description>
		<content:encoded><![CDATA[<p>I&#8217;m enjoying your tutorials.<br />
Thank you.<br />
But When will you publish the next tutorials in same the field? can you email me to tell me when it will ready?<br />
Kwame.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bobot</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-845</link>
		<dc:creator>bobot</dc:creator>
		<pubDate>Thu, 12 Feb 2009 03:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-845</guid>
		<description>hi.

Can you provide me simple example apps w/ login, that implements this MVC.

Thanks in advance.
God Bless,
Bobot</description>
		<content:encoded><![CDATA[<p>hi.</p>
<p>Can you provide me simple example apps w/ login, that implements this MVC.</p>
<p>Thanks in advance.<br />
God Bless,<br />
Bobot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Susanta</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-841</link>
		<dc:creator>Susanta</dc:creator>
		<pubDate>Mon, 11 Aug 2008 22:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-841</guid>
		<description>I have a model that is bound to a form ( as you fill in values in forms the values in model are set) .After submit, I would like to clear the form. How the clear action can be implemented in cairngorm ?
 I can not free the model in a seperate command and expect the view to change(that is free itself) that would require 2-way binding. I can have the form register a listener during startup but then that way I am not using the cairngorm controller. I can think of a Component Locator model (that would give me a reference of the form) and run a method on it to free it. But none of these seem to be an elegant solution.

Any input is helpful</description>
		<content:encoded><![CDATA[<p>I have a model that is bound to a form ( as you fill in values in forms the values in model are set) .After submit, I would like to clear the form. How the clear action can be implemented in cairngorm ?<br />
 I can not free the model in a seperate command and expect the view to change(that is free itself) that would require 2-way binding. I can have the form register a listener during startup but then that way I am not using the cairngorm controller. I can think of a Component Locator model (that would give me a reference of the form) and run a method on it to free it. But none of these seem to be an elegant solution.</p>
<p>Any input is helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Neri</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-837</link>
		<dc:creator>Daniel Neri</dc:creator>
		<pubDate>Sat, 14 Jun 2008 18:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-837</guid>
		<description>Fantastic article!

Let&#039;s hope a can get a hang of cairngorm as I&#039;m building a HUGE enterprise level app. These series definitely helped a lot!

Thanks a TON!</description>
		<content:encoded><![CDATA[<p>Fantastic article!</p>
<p>Let&#8217;s hope a can get a hang of cairngorm as I&#8217;m building a HUGE enterprise level app. These series definitely helped a lot!</p>
<p>Thanks a TON!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://www.gotripod.com/2008/06/10/building-a-medium-to-large-scale-flex-app-using-cairngorm-part-4/comment-page-1/#comment-833</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Thu, 12 Jun 2008 23:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://clockobj.co.uk/?p=107#comment-833</guid>
		<description>Jon - I&#039;ve been using your EasyMVC with the scaling up additions (commands and services). From what I can see the main differences you have shown thus far in the Cairngorm articles is the FrontController + Cairngorm events and the Cairngorm SequenceCommand feature. I did add the service locator to EasyMVC which is nice since you do not have to add singleton implementation to each service.

Hopefully I do not end up re-building Cairngorm but EasyMVC is really, well..., easy, and works well for me. Based on your articles I can learn more about Cairngorm and add functionality (like the Servicelocator) as I go.

Many thanks, another nice series Jon - look forward to more.</description>
		<content:encoded><![CDATA[<p>Jon &#8211; I&#8217;ve been using your EasyMVC with the scaling up additions (commands and services). From what I can see the main differences you have shown thus far in the Cairngorm articles is the FrontController + Cairngorm events and the Cairngorm SequenceCommand feature. I did add the service locator to EasyMVC which is nice since you do not have to add singleton implementation to each service.</p>
<p>Hopefully I do not end up re-building Cairngorm but EasyMVC is really, well&#8230;, easy, and works well for me. Based on your articles I can learn more about Cairngorm and add functionality (like the Servicelocator) as I go.</p>
<p>Many thanks, another nice series Jon &#8211; look forward to more.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- Quick Cache: failed to write cache. The cache/ directory is either non-existent ( and could not be created ) or it is not writable. -->
