<?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 Robert Cesaric</title>
	<atom:link href="http://cesaric.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://cesaric.com</link>
	<description>Geek Is The New Black</description>
	<lastBuildDate>Fri, 03 Sep 2010 09:50:16 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Adding Zend PHTML extension in Dreamweaver by Alzi</title>
		<link>http://cesaric.com/?p=236&#038;cpage=1#comment-711</link>
		<dc:creator>Alzi</dc:creator>
		<pubDate>Fri, 03 Sep 2010 09:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=236#comment-711</guid>
		<description>Hey Rob!

Thank you for sharing this. The Internet is a little better, with people like yourself in it. :o)</description>
		<content:encoded><![CDATA[<p>Hey Rob!</p>
<p>Thank you for sharing this. The Internet is a little better, with people like yourself in it. <img src='http://cesaric.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine and AMF Mapping by Rob</title>
		<link>http://cesaric.com/?p=57&#038;cpage=1#comment-710</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 03 Sep 2010 05:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=57#comment-710</guid>
		<description>Hey JonoB, does you UserVO class in Flex have the RemoteClass alias set like the following?:

	[RemoteClass(alias=&quot;UserVO&quot;)]	
	public class UserVO extends BaseUserVO
	{		
		public function UserVO()
		{
		}
	}

The RemoteClass alias and your PHP mapValue can actually be anything as long as they match EXACTLY.  Even prefixing with the package as such: alias=&quot;model.vo.UserVO&quot; would break it because mapValue=&quot;UserVO&quot;.  

Also, are you using a tool like http://www.charlesproxy.com? There&#039;s also a Firefox add-on equivalent called &quot;AMF Explorer&quot;.  These will allow you to monitor the AMF request and response traffic between PHP and Flex; giving you a better look into what might be wrong or missing.</description>
		<content:encoded><![CDATA[<p>Hey JonoB, does you UserVO class in Flex have the RemoteClass alias set like the following?:</p>
<p>	[RemoteClass(alias="UserVO")]<br />
	public class UserVO extends BaseUserVO<br />
	{<br />
		public function UserVO()<br />
		{<br />
		}<br />
	}</p>
<p>The RemoteClass alias and your PHP mapValue can actually be anything as long as they match EXACTLY.  Even prefixing with the package as such: alias=&#8221;model.vo.UserVO&#8221; would break it because mapValue=&#8221;UserVO&#8221;.  </p>
<p>Also, are you using a tool like <a href="http://www.charlesproxy.com?" rel="nofollow">http://www.charlesproxy.com?</a> There&#8217;s also a Firefox add-on equivalent called &#8220;AMF Explorer&#8221;.  These will allow you to monitor the AMF request and response traffic between PHP and Flex; giving you a better look into what might be wrong or missing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine Collection -&gt; ActionScript ArrayCollection by Rob</title>
		<link>http://cesaric.com/?p=303&#038;cpage=1#comment-709</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 03 Sep 2010 04:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=303#comment-709</guid>
		<description>Glad it helped!  I should have a proper AMF hydration plugin for Doctrine to replace his hack shortly (coming from the work on aerial-project.org).</description>
		<content:encoded><![CDATA[<p>Glad it helped!  I should have a proper AMF hydration plugin for Doctrine to replace his hack shortly (coming from the work on aerial-project.org).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine and AMF Mapping by JonoB</title>
		<link>http://cesaric.com/?p=57&#038;cpage=1#comment-708</link>
		<dc:creator>JonoB</dc:creator>
		<pubDate>Thu, 02 Sep 2010 17:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=57#comment-708</guid>
		<description>Hi Rob,
I have a fairly large amfphp project, and I&#039;m looking to use doctrine as an ORM.
I&#039;ve managed to hook up my services folder, so that any doctrine queries are passed off to the relevant doctrine models, and this all works fine. The one outstanding item is to get the VO&#039;s working correctly. I tried to use something like the following in my doctrine model, but amfphp doesnt seem to recognise this, and the array doesnt get typed up properly at all.
&lt;code&gt;class ModelUser extends ModelBaseUser
{
    public function construct()
    {
		$this-&gt;mapValue(&quot;_explicitType&quot;, &#039;UserVO&#039;);
    }
}&lt;/code&gt;

Any pointers on how to get VO&#039;s working with amfphp and doctrine would be awesome.</description>
		<content:encoded><![CDATA[<p>Hi Rob,<br />
I have a fairly large amfphp project, and I&#8217;m looking to use doctrine as an ORM.<br />
I&#8217;ve managed to hook up my services folder, so that any doctrine queries are passed off to the relevant doctrine models, and this all works fine. The one outstanding item is to get the VO&#8217;s working correctly. I tried to use something like the following in my doctrine model, but amfphp doesnt seem to recognise this, and the array doesnt get typed up properly at all.<br />
<code>class ModelUser extends ModelBaseUser<br />
{<br />
    public function construct()<br />
    {<br />
		$this->mapValue("_explicitType", 'UserVO');<br />
    }<br />
}</code></p>
<p>Any pointers on how to get VO&#8217;s working with amfphp and doctrine would be awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine Collection -&gt; ActionScript ArrayCollection by Dagrinchi</title>
		<link>http://cesaric.com/?p=303&#038;cpage=1#comment-707</link>
		<dc:creator>Dagrinchi</dc:creator>
		<pubDate>Wed, 01 Sep 2010 19:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=303#comment-707</guid>
		<description>Reaaallyy thanks!!!!</description>
		<content:encoded><![CDATA[<p>Reaaallyy thanks!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine and AMF Mapping by Rob</title>
		<link>http://cesaric.com/?p=57&#038;cpage=1#comment-705</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 30 Aug 2010 13:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=57#comment-705</guid>
		<description>Hi Romain, I haven&#039;t tried with Zend Amf 1.10 as I&#039;ve switched back to AMFPHP.  Can you provide some code for me to test with?  All I need is a single Flex VO and the associated PHP Service class (and base).  If I don&#039;t see any errors, I&#039;ll see if I can get a full round-trip example working with Zend 1.10 and zip it up for you.  You can either paste the code here or email it to me:  robert@[this domain]</description>
		<content:encoded><![CDATA[<p>Hi Romain, I haven&#8217;t tried with Zend Amf 1.10 as I&#8217;ve switched back to AMFPHP.  Can you provide some code for me to test with?  All I need is a single Flex VO and the associated PHP Service class (and base).  If I don&#8217;t see any errors, I&#8217;ll see if I can get a full round-trip example working with Zend 1.10 and zip it up for you.  You can either paste the code here or email it to me:  robert@[this domain]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Doctrine and AMF Mapping by Rom's</title>
		<link>http://cesaric.com/?p=57&#038;cpage=1#comment-704</link>
		<dc:creator>Rom's</dc:creator>
		<pubDate>Sun, 29 Aug 2010 17:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=57#comment-704</guid>
		<description>I&#039;m having the same problem using Doctrine 1.2.2 and Zend Amf 1.10.7 except that it didn&#039;t work no matter what I tried : using your method (constructor), setTableDefinition, getASClassName(), wether it be in the Contact or BaseContact and with or without setClassMap(&#039;ContactVO&#039;,&#039;Contact&#039;) on Zend Amf bootstrap (even tried with the fully qualified class name there). And I&#039;m sure there&#039;s no error left as I received my service response correctly (without class mapping) and set my Flex RemoteClass metadata.

Could you give me any advice on how to proceed ?

This is necessary for me because my website has quite a huge database and class mapping is really needed there :)

Thanks a lot, hope you&#039;ll get time for this.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem using Doctrine 1.2.2 and Zend Amf 1.10.7 except that it didn&#8217;t work no matter what I tried : using your method (constructor), setTableDefinition, getASClassName(), wether it be in the Contact or BaseContact and with or without setClassMap(&#8216;ContactVO&#8217;,'Contact&#8217;) on Zend Amf bootstrap (even tried with the fully qualified class name there). And I&#8217;m sure there&#8217;s no error left as I received my service response correctly (without class mapping) and set my Flex RemoteClass metadata.</p>
<p>Could you give me any advice on how to proceed ?</p>
<p>This is necessary for me because my website has quite a huge database and class mapping is really needed there <img src='http://cesaric.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks a lot, hope you&#8217;ll get time for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create virtual hosts in WAMP by Rob</title>
		<link>http://cesaric.com/?p=255&#038;cpage=1#comment-702</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 12 Aug 2010 06:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=255#comment-702</guid>
		<description>Diego, glad it helped!</description>
		<content:encoded><![CDATA[<p>Diego, glad it helped!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create virtual hosts in WAMP by Diego Ruiz</title>
		<link>http://cesaric.com/?p=255&#038;cpage=1#comment-701</link>
		<dc:creator>Diego Ruiz</dc:creator>
		<pubDate>Thu, 12 Aug 2010 02:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=255#comment-701</guid>
		<description>Worked like a charm. Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Worked like a charm. Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Zend PHTML extension in Dreamweaver by makeityourown</title>
		<link>http://cesaric.com/?p=236&#038;cpage=1#comment-700</link>
		<dc:creator>makeityourown</dc:creator>
		<pubDate>Thu, 15 Jul 2010 17:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://cesaric.com/?p=236#comment-700</guid>
		<description>Thanks! you really helped me out with this!! :D

Is way better editing with the syntax highlight!</description>
		<content:encoded><![CDATA[<p>Thanks! you really helped me out with this!! <img src='http://cesaric.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Is way better editing with the syntax highlight!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
