<?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: RemoteObjectAMFO  update to latest Cairngorm</title>
	<atom:link href="http://renaun.com/blog/2006/07/26/71/feed/" rel="self" type="application/rss+xml" />
	<link>http://renaun.com/blog/2006/07/26/71/</link>
	<description>Informtation on Flex, Flash, ColdFusion, and general RIA web develoment.</description>
	<pubDate>Mon, 15 Mar 2010 05:51:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nate Ross</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-456622</link>
		<dc:creator>Nate Ross</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-456622</guid>
		<description>Here is how you map the Date successful using AMFPHP.

Send the date over in milliseconds as a Number.  Then you can do the following...

private var _birthdate:Date;
public function set birthdate(value:*):void {
  if (value is Number &#124;&#124; value is String) {
    _birthdate = new Date();
    _birthdate.setTime(value);
  }
}
public function get birthdate():Date {
  return _birthdate;
}

Voila!</description>
		<content:encoded><![CDATA[<p>Here is how you map the Date successful using AMFPHP.</p>
<p>Send the date over in milliseconds as a Number.  Then you can do the following&#8230;</p>
<p>private var _birthdate:Date;<br />
public function set birthdate(value:*):void {<br />
  if (value is Number || value is String) {<br />
    _birthdate = new Date();<br />
    _birthdate.setTime(value);<br />
  }<br />
}<br />
public function get birthdate():Date {<br />
  return _birthdate;<br />
}</p>
<p>Voila!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renaun Erickson &#187; Getting WebORB for PHP Working</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-405588</link>
		<dc:creator>Renaun Erickson &#187; Getting WebORB for PHP Working</dc:creator>
		<pubDate>Sun, 30 Nov 2008 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-405588</guid>
		<description>[...] example Flex application is from my example code used in the RemoteObjectAMF0 and my SabreAMF example. You can get the my example code [...]</description>
		<content:encoded><![CDATA[<p>[...] example Flex application is from my example code used in the RemoteObjectAMF0 and my SabreAMF example. You can get the my example code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Van Brunt</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-397592</link>
		<dc:creator>Dan Van Brunt</dc:creator>
		<pubDate>Mon, 30 Nov 2009 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-397592</guid>
		<description>Renaun,
Can you please provide an example of what you mean regarding your response on  2006-08-21 at 7.29 am regarding AMF, PHP and Date conversions?

I'm currently have this error with Dates as well as passing nested VOs from PHP to Flex using AMFPHP.

eg. TeamVO has a property "players" that I'm trying to pass as an array of PlayerVOs.

Is this even possible?</description>
		<content:encoded><![CDATA[<p>Renaun,<br />
Can you please provide an example of what you mean regarding your response on  2006-08-21 at 7.29 am regarding AMF, PHP and Date conversions?</p>
<p>I&#8217;m currently have this error with Dates as well as passing nested VOs from PHP to Flex using AMFPHP.</p>
<p>eg. TeamVO has a property &#8220;players&#8221; that I&#8217;m trying to pass as an array of PlayerVOs.</p>
<p>Is this even possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tercüme bürosu</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-199490</link>
		<dc:creator>Tercüme bürosu</dc:creator>
		<pubDate>Sun, 30 Nov 2008 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-199490</guid>
		<description>Yeah, the zipped source version is for PHP 5 and to get it to work in PHP 4 you need to change the public to var in the BookVO.php...</description>
		<content:encoded><![CDATA[<p>Yeah, the zipped source version is for PHP 5 and to get it to work in PHP 4 you need to change the public to var in the BookVO.php&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renaun Erickson</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-11375</link>
		<dc:creator>Renaun Erickson</dc:creator>
		<pubDate>Fri, 30 Nov 2007 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-11375</guid>
		<description>It looks like you have some casting wrong somewhere.  Is there something in your code where you are doing RemoteObject( roAMF0 )?

Is RemoteObject class present anywhere in your code?
What backend are you using RemoteObjectAMF0 with?</description>
		<content:encoded><![CDATA[<p>It looks like you have some casting wrong somewhere.  Is there something in your code where you are doing RemoteObject( roAMF0 )?</p>
<p>Is RemoteObject class present anywhere in your code?<br />
What backend are you using RemoteObjectAMF0 with?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ilya</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-11370</link>
		<dc:creator>Ilya</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-11370</guid>
		<description>Hi Renaun, 
I get the following error, then use RemoteObjectAMF0:
TypeError: Error #1034: Type Coercion failed: cannot convert com.renaun.rpc::RemoteObjectAMF0@4359e61 to mx.rpc.remoting.RemoteObject
I shall be grateful for any help</description>
		<content:encoded><![CDATA[<p>Hi Renaun,<br />
I get the following error, then use RemoteObjectAMF0:<br />
TypeError: Error #1034: Type Coercion failed: cannot convert com.renaun.rpc::RemoteObjectAMF0@4359e61 to mx.rpc.remoting.RemoteObject<br />
I shall be grateful for any help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Brailsford</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-8644</link>
		<dc:creator>Matt Brailsford</dc:creator>
		<pubDate>Sun, 30 Nov 2003 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-8644</guid>
		<description>Hi Renaun

I'm trying to use RemoteObjectAMF0 in a real simple example, that doesn't use cairngorm. I'm trying to bind a datagrid to the results public property, however it doesn't seem to bind.

Don't suppose you have any ideas why? Or any examples of how best to do it without cairngorm?

Many thanks

Matt</description>
		<content:encoded><![CDATA[<p>Hi Renaun</p>
<p>I&#8217;m trying to use RemoteObjectAMF0 in a real simple example, that doesn&#8217;t use cairngorm. I&#8217;m trying to bind a datagrid to the results public property, however it doesn&#8217;t seem to bind.</p>
<p>Don&#8217;t suppose you have any ideas why? Or any examples of how best to do it without cairngorm?</p>
<p>Many thanks</p>
<p>Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Shrefler &#187; Adobe Flex 2.0 + Cairngorm + Fluorine + ASP.NET Sample Application / Tutorial</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-7819</link>
		<dc:creator>Sam Shrefler &#187; Adobe Flex 2.0 + Cairngorm + Fluorine + ASP.NET Sample Application / Tutorial</dc:creator>
		<pubDate>Tue, 30 Nov 2010 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-7819</guid>
		<description>[...] Using Service Capture , an ABSOLUTELY fantastic tool and Fluorine with AMF3, still seems to be a problem. Also, I wanted to try and use the RemoteObject tag with my solution to make using .NET a little less coupled. Well, it turns out; Fluorine still seems to work great with AMF0, the remoting format from Flash 8. This led me to Renaun’s RemoteObjectAMF0 which easily plugs into a Cairngorm ServiceLocator. So there's the pieces, now to put together the puzzle. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Service Capture , an ABSOLUTELY fantastic tool and Fluorine with AMF3, still seems to be a problem. Also, I wanted to try and use the RemoteObject tag with my solution to make using .NET a little less coupled. Well, it turns out; Fluorine still seems to work great with AMF0, the remoting format from Flash 8. This led me to Renaun’s RemoteObjectAMF0 which easily plugs into a Cairngorm ServiceLocator. So there&#8217;s the pieces, now to put together the puzzle. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Shrefler &#187; Flex + Cairngorm + Fluorine + .NET Sample Application / Tutorial</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-7731</link>
		<dc:creator>Sam Shrefler &#187; Flex + Cairngorm + Fluorine + .NET Sample Application / Tutorial</dc:creator>
		<pubDate>Tue, 30 Nov 2010 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-7731</guid>
		<description>[...] Using Service Capture , an ABSOLUTELY fantastic tool and Fluorine with AMF3, still seems to be a problem. Also, I wanted to try and use the RemoteObject tag with my solution to make using .NET a little less coupled. Well, it turns out; Fluorine still seems to work great with AMF0, the remoting format from Flash 8. This led me to Renaun’s RemoteObjectAMF0 which easily plugs into a Cairngorm ServiceLocator. So there's the pieces, now to put together the puzzle. [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Service Capture , an ABSOLUTELY fantastic tool and Fluorine with AMF3, still seems to be a problem. Also, I wanted to try and use the RemoteObject tag with my solution to make using .NET a little less coupled. Well, it turns out; Fluorine still seems to work great with AMF0, the remoting format from Flash 8. This led me to Renaun’s RemoteObjectAMF0 which easily plugs into a Cairngorm ServiceLocator. So there&#8217;s the pieces, now to put together the puzzle. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renaun Erickson</title>
		<link>http://renaun.com/blog/2006/07/26/71/comment-page-1/#comment-7723</link>
		<dc:creator>Renaun Erickson</dc:creator>
		<pubDate>Sun, 30 Nov 2008 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://renaun.com/blog/2006/07/26/71/#comment-7723</guid>
		<description>&lt;a href="http://renaun.com/blog/2006/10/17/116/" rel="nofollow"&gt;Matt find the udpates here...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://renaun.com/blog/2006/10/17/116/" rel="nofollow">Matt find the udpates here&#8230;</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
