<?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: 10X Zend Amf Performance enhancements &#8212; please test!</title>
	<atom:link href="http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/feed" rel="self" type="application/rss+xml" />
	<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test</link>
	<description>The spoils of the integration of PHP and ActionScript</description>
	<lastBuildDate>Tue, 17 Jan 2012 17:17:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Team Roster</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-22117</link>
		<dc:creator>Team Roster</dc:creator>
		<pubDate>Sat, 30 Oct 2010 10:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-22117</guid>
		<description>Best you should edit the blog name title Wade Arnold &#187; 10X Zend Amf Performance enhancements &#8212; please test!  to something more generic for your content you make. I enjoyed the blog post even sononetheless.</description>
		<content:encoded><![CDATA[<p>Best you should edit the blog name title Wade Arnold &raquo; 10X Zend Amf Performance enhancements &#8212; please test!  to something more generic for your content you make. I enjoyed the blog post even sononetheless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Gentry</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-17494</link>
		<dc:creator>Christian Gentry</dc:creator>
		<pubDate>Wed, 18 Aug 2010 08:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-17494</guid>
		<description>Hi Wade,

First of all great work on Zend AMF server, very nice way to integrate with PHP and a standard PHP library.

I have come across 3 bugs in Zend AMF Server (1 dealing with sending info via raw Net Connection in Flash CS3/CS4/CS5 and the other 2 dealing with Authentication/Acl handling). Is there a bug reporting database I can submit these too or notify someone about (it took me hours to figure out what was going wrong so it might be nice for others to not endure that ;).

Cheers!
-Christian Gentry</description>
		<content:encoded><![CDATA[<p>Hi Wade,</p>
<p>First of all great work on Zend AMF server, very nice way to integrate with PHP and a standard PHP library.</p>
<p>I have come across 3 bugs in Zend AMF Server (1 dealing with sending info via raw Net Connection in Flash CS3/CS4/CS5 and the other 2 dealing with Authentication/Acl handling). Is there a bug reporting database I can submit these too or notify someone about (it took me hours to figure out what was going wrong so it might be nice for others to not endure that <img src='http://wadearnold.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Cheers!<br />
-Christian Gentry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marko kecman</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-10971</link>
		<dc:creator>marko kecman</dc:creator>
		<pubDate>Wed, 10 Mar 2010 02:27:37 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-10971</guid>
		<description>hey Wade,
is there new patch? I tried all these patches but no luck..</description>
		<content:encoded><![CDATA[<p>hey Wade,<br />
is there new patch? I tried all these patches but no luck..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beng</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-10780</link>
		<dc:creator>beng</dc:creator>
		<pubDate>Thu, 04 Mar 2010 05:43:16 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-10780</guid>
		<description>Can anyone point me in the right direction of using Zend AMF authentication by passing credentials to the gateway through NetConnection.addHeader?

So far I am able to create my connection and pass what I believe setCredentials used to do:
nc.addHeader(&quot;Credentials&quot;, false, {userid: &quot;myuser&quot;, password: &quot;mypass&quot;});

But then within the Zend_Amf_Server class trying to access the credentials is incorrect:
$headers[Zend_Amf_Constants::CREDENTIALS_HEADER]-&gt;userid (this does not get the correct header information from the above addHeader command)

If you change it to:
$headers[0]-&gt;data-&gt;userid (this does get &#039;myuser&#039; from the header)  

So what is the deal?  Is this a bug within the Zend_Amf_Server class?  Or am I doing something wrong?</description>
		<content:encoded><![CDATA[<p>Can anyone point me in the right direction of using Zend AMF authentication by passing credentials to the gateway through NetConnection.addHeader?</p>
<p>So far I am able to create my connection and pass what I believe setCredentials used to do:<br />
nc.addHeader(&#8220;Credentials&#8221;, false, {userid: &#8220;myuser&#8221;, password: &#8220;mypass&#8221;});</p>
<p>But then within the Zend_Amf_Server class trying to access the credentials is incorrect:<br />
$headers[Zend_Amf_Constants::CREDENTIALS_HEADER]-&gt;userid (this does not get the correct header information from the above addHeader command)</p>
<p>If you change it to:<br />
$headers[0]-&gt;data-&gt;userid (this does get &#8216;myuser&#8217; from the header)  </p>
<p>So what is the deal?  Is this a bug within the Zend_Amf_Server class?  Or am I doing something wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: averger</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-10486</link>
		<dc:creator>averger</dc:creator>
		<pubDate>Wed, 24 Feb 2010 08:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-10486</guid>
		<description>Hi,
on February 5th, you talked about a performance improvment patch on the next mini release of Zend but on the 1.10.1 no scent of this patch ... I&#039;ve no other way to switch to AMFPhP solution ... I really regret choosing ZendAMF for an important enterprise solution because I didn&#039;t realize that the performance were so bad ...</description>
		<content:encoded><![CDATA[<p>Hi,<br />
on February 5th, you talked about a performance improvment patch on the next mini release of Zend but on the 1.10.1 no scent of this patch &#8230; I&#8217;ve no other way to switch to AMFPhP solution &#8230; I really regret choosing ZendAMF for an important enterprise solution because I didn&#8217;t realize that the performance were so bad &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: averger</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-10127</link>
		<dc:creator>averger</dc:creator>
		<pubDate>Mon, 15 Feb 2010 10:56:36 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-10127</guid>
		<description>Hi Wade, 
your performance patch for Zend AMF is a decision criteria in my working project to make a choice between keeping ZendAMF and patch it or switch my project to AMFPhP. I&#039;m aware of the fact that you must have a lot of other activities but your answer for the date of the next release is very important for my technical choices ... 

Cordially.

Antoine</description>
		<content:encoded><![CDATA[<p>Hi Wade,<br />
your performance patch for Zend AMF is a decision criteria in my working project to make a choice between keeping ZendAMF and patch it or switch my project to AMFPhP. I&#8217;m aware of the fact that you must have a lot of other activities but your answer for the date of the next release is very important for my technical choices &#8230; </p>
<p>Cordially.</p>
<p>Antoine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: averger</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-9912</link>
		<dc:creator>averger</dc:creator>
		<pubDate>Mon, 08 Feb 2010 13:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-9912</guid>
		<description>Thank you very much for your answer ... Where will we find your mini-release in the next days ?!</description>
		<content:encoded><![CDATA[<p>Thank you very much for your answer &#8230; Where will we find your mini-release in the next days ?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wadearnold</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-9812</link>
		<dc:creator>wadearnold</dc:creator>
		<pubDate>Fri, 05 Feb 2010 19:48:06 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-9812</guid>
		<description>There is a new patch coming this weekend when I get done with the J.O.B.  this week. We will have the performance patch into the next mini release.</description>
		<content:encoded><![CDATA[<p>There is a new patch coming this weekend when I get done with the J.O.B.  this week. We will have the performance patch into the next mini release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: averger</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-9783</link>
		<dc:creator>averger</dc:creator>
		<pubDate>Fri, 05 Feb 2010 13:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-9783</guid>
		<description>What&#039;s the actual status of this performance bug correction ? I&#039;ve try to deploy the zip files on a 1.10 version of zend amf and I&#039;ve also have the null return problem ... do I have to switch zend amf to amfphp if I want real performances ? Thank you for your help. 
Cordially


Antoine</description>
		<content:encoded><![CDATA[<p>What&#8217;s the actual status of this performance bug correction ? I&#8217;ve try to deploy the zip files on a 1.10 version of zend amf and I&#8217;ve also have the null return problem &#8230; do I have to switch zend amf to amfphp if I want real performances ? Thank you for your help.<br />
Cordially</p>
<p>Antoine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://wadearnold.com/blog/flash/10x-zend-amf-performance-enhancements-please-test/comment-page-1#comment-9775</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Fri, 05 Feb 2010 10:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=304#comment-9775</guid>
		<description>I&#039;ve patch together something that works for me (1.10 stable):
http://www.mediafire.com/?mqji3wymnzh

Huge thanks for these patches btw, it makes a world of difference.

Used patches:
Amf.Combined-NoObjectsByRef.diff (made it much faster for me)
Amf.perform.ref-writeString.diff (only slightly faster)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve patch together something that works for me (1.10 stable):<br />
<a href="http://www.mediafire.com/?mqji3wymnzh" rel="nofollow">http://www.mediafire.com/?mqji3wymnzh</a></p>
<p>Huge thanks for these patches btw, it makes a world of difference.</p>
<p>Used patches:<br />
Amf.Combined-NoObjectsByRef.diff (made it much faster for me)<br />
Amf.perform.ref-writeString.diff (only slightly faster)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
