<?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: All in One - Cairngorm Store Example (ColdFusion, AMFPHP, AMFPHP 1.9, and WebServices)</title>
	<atom:link href="http://renaun.com/blog/2006/12/19/170/feed/" rel="self" type="application/rss+xml" />
	<link>http://renaun.com/blog/2006/12/19/170/</link>
	<description>Informtation on Flex, Flash, ColdFusion, and general RIA web develoment.</description>
	<pubDate>Wed, 17 Mar 2010 01:43:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Getting started with Cairngorm &#124; bybjorn.com &#124; Bjørn Børresen - freelance web developer</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-485771</link>
		<dc:creator>Getting started with Cairngorm &#124; bybjorn.com &#124; Bjørn Børresen - freelance web developer</dc:creator>
		<pubDate>Wed, 30 Nov 2011 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-485771</guid>
		<description>[...] has a nice Cairngorm store example with support for 4 different backends (ColdFusion Remoting, AMF3, AMFPHP, AMF0). See it live [...]</description>
		<content:encoded><![CDATA[<p>[...] has a nice Cairngorm store example with support for 4 different backends (ColdFusion Remoting, AMF3, AMFPHP, AMF0). See it live [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dl</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-485382</link>
		<dc:creator>dl</dc:creator>
		<pubDate>Tue, 30 Nov 2010 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-485382</guid>
		<description>Hello,
could anyone post an example how to pass VO's from Flex using cairngorm to amfphp and from amfphp back to flex.
*PLEASE*
I already googled and try to simply pass an vo without cair but even that was not working.
Well, a complete as simple as possible example would make things more clear and more joy.

Yours Faithfully
dl</description>
		<content:encoded><![CDATA[<p>Hello,<br />
could anyone post an example how to pass VO&#8217;s from Flex using cairngorm to amfphp and from amfphp back to flex.<br />
*PLEASE*<br />
I already googled and try to simply pass an vo without cair but even that was not working.<br />
Well, a complete as simple as possible example would make things more clear and more joy.</p>
<p>Yours Faithfully<br />
dl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-369343</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 30 Nov 2007 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-369343</guid>
		<description>It appears the source for this article doesnt include the AMF3 option in the drop down but the online app does. Is it possible to post the latest code for this.
Thanks</description>
		<content:encoded><![CDATA[<p>It appears the source for this article doesnt include the AMF3 option in the drop down but the online app does. Is it possible to post the latest code for this.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cultfigure</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-73364</link>
		<dc:creator>cultfigure</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-73364</guid>
		<description>I too was having the same problem Philipp was having when I tried to migrate from AMFPHP1.2 to &lt;a href="http://www.5etdemi.com/blog/archives/2007/01/amfphp-19-beta-2-ridiculously-faster/" rel="nofollow"&gt;1.9beta2&lt;/a&gt; where the result would die upon casting the event.result to an ICollectionView...

I (eventually) found the answer &lt;a href="http://www.jeffryhouser.com/index.cfm/2007/2/19/Learning-Cairngorm-Part-3" rel="nofollow"&gt;here&lt;/a&gt;, quoting: 

&lt;blockquote&gt;
There was one line of ActionScript in the result method that I didn't understand:

var products : ICollectionView = ICollectionView( event.result );

This line creates a product variable of ICollectionView, and calls the ICollectionView constructor with the 'event.result' as an argument. Unfortunately, ICollectionView is an interface and does not appear to have a constructor. This line was throwing errors.

After some digging I found that an ArrayCollection inherits the ICollectionView methods through the ListCollectionView class. All code written against the ICollectionView interface should also work against an ArrayCollection. I replaced the ICollectionView line above with these two:

var products : ArrayCollection = new ArrayCollection ();
products.source = event.result as Array;

And bingo, everything started working. 
&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>I too was having the same problem Philipp was having when I tried to migrate from AMFPHP1.2 to <a href="http://www.5etdemi.com/blog/archives/2007/01/amfphp-19-beta-2-ridiculously-faster/" rel="nofollow">1.9beta2</a> where the result would die upon casting the event.result to an ICollectionView&#8230;</p>
<p>I (eventually) found the answer <a href="http://www.jeffryhouser.com/index.cfm/2007/2/19/Learning-Cairngorm-Part-3" rel="nofollow">here</a>, quoting: </p>
<blockquote><p>
There was one line of ActionScript in the result method that I didn&#8217;t understand:</p>
<p>var products : ICollectionView = ICollectionView( event.result );</p>
<p>This line creates a product variable of ICollectionView, and calls the ICollectionView constructor with the &#8216;event.result&#8217; as an argument. Unfortunately, ICollectionView is an interface and does not appear to have a constructor. This line was throwing errors.</p>
<p>After some digging I found that an ArrayCollection inherits the ICollectionView methods through the ListCollectionView class. All code written against the ICollectionView interface should also work against an ArrayCollection. I replaced the ICollectionView line above with these two:</p>
<p>var products : ArrayCollection = new ArrayCollection ();<br />
products.source = event.result as Array;</p>
<p>And bingo, everything started working.
</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: J Buda</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-73158</link>
		<dc:creator>J Buda</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-73158</guid>
		<description>oops......the sample xml isnt showing!</description>
		<content:encoded><![CDATA[<p>oops&#8230;&#8230;the sample xml isnt showing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J Buda</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-73157</link>
		<dc:creator>J Buda</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-73157</guid>
		<description>Hi again...

Im trying to create an ArrayCollection after returning a xml from a webservice.

My xml returns an object that has a nested children within a node. ie.



     
            
            
          
                 
                 
          
     

     
            
            
          
                 
                 
                 
                 
          
     


My question is this....i can i create the ArrayCollection using the xmlFactory? Im having problems with generating the replicating the ArrayCollection with the sample xml above?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi again&#8230;</p>
<p>Im trying to create an ArrayCollection after returning a xml from a webservice.</p>
<p>My xml returns an object that has a nested children within a node. ie.</p>
<p>My question is this&#8230;.i can i create the ArrayCollection using the xmlFactory? Im having problems with generating the replicating the ArrayCollection with the sample xml above?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renaun Erickson</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-59119</link>
		<dc:creator>Renaun Erickson</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-59119</guid>
		<description>This code was taken from Adobe Consulting example.  I personally feel the code is a little confusing to follow.  But you can still gleam some valuable code bits from it.  So in the end I wouldn't follow it to closely and there might be errors.

All I did with the multiple backend exercise was to show that you can take a Cairngorm application and quite easily change out the backend.</description>
		<content:encoded><![CDATA[<p>This code was taken from Adobe Consulting example.  I personally feel the code is a little confusing to follow.  But you can still gleam some valuable code bits from it.  So in the end I wouldn&#8217;t follow it to closely and there might be errors.</p>
<p>All I did with the multiple backend exercise was to show that you can take a Cairngorm application and quite easily change out the backend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J Buda</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-59116</link>
		<dc:creator>J Buda</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-59116</guid>
		<description>Hi Again.....

Im a bit confused with the model.selectedItem..

On the store, when you change between Graphical Product List and Textual Product List.....why does the updateSelectedProduct method change?

On the TextualProductList.mxml, the method CairngormEventDispatcher is used, and doesnt work!
However, on the Graphical Product List  an normal dispatchEvent method is used and seems to work fine.

I have been following the code in the store to create an application of my own, but im slightly confused to the different methods that have been used to dispatch the update selected product

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Again&#8230;..</p>
<p>Im a bit confused with the model.selectedItem..</p>
<p>On the store, when you change between Graphical Product List and Textual Product List&#8230;..why does the updateSelectedProduct method change?</p>
<p>On the TextualProductList.mxml, the method CairngormEventDispatcher is used, and doesnt work!<br />
However, on the Graphical Product List  an normal dispatchEvent method is used and seems to work fine.</p>
<p>I have been following the code in the store to create an application of my own, but im slightly confused to the different methods that have been used to dispatch the update selected product</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J Buda</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-59073</link>
		<dc:creator>J Buda</dc:creator>
		<pubDate>Sun, 30 Nov 2003 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-59073</guid>
		<description>Fantastic!!

I have trying to load in an xml file and display the results and populating a selectedItem with Cairngorm, but i kept getting errors.

Using your ArrayCollection for xml i have managed to get it working!

Many Thanks</description>
		<content:encoded><![CDATA[<p>Fantastic!!</p>
<p>I have trying to load in an xml file and display the results and populating a selectedItem with Cairngorm, but i kept getting errors.</p>
<p>Using your ArrayCollection for xml i have managed to get it working!</p>
<p>Many Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philipp</title>
		<link>http://renaun.com/blog/2006/12/19/170/comment-page-1/#comment-29609</link>
		<dc:creator>philipp</dc:creator>
		<pubDate>Sun, 30 Nov 2003 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/12/19/170/#comment-29609</guid>
		<description>hi,
i didn't change any code ... 
so line 74 in com\adobe\cairngorm\samples\store\command\GetProductsCommand.as looks like it always did:
&lt;code&gt;
var products : ICollectionView = ICollectionView( event.result );
&lt;/code&gt;

phil</description>
		<content:encoded><![CDATA[<p>hi,<br />
i didn&#8217;t change any code &#8230;<br />
so line 74 in com\adobe\cairngorm\samples\store\command\GetProductsCommand.as looks like it always did:<br />
<code><br />
var products : ICollectionView = ICollectionView( event.result );<br />
</code></p>
<p>phil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
