<?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: Zend Amf+Auth+Acl == secured AMF communication</title>
	<atom:link href="http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/feed" rel="self" type="application/rss+xml" />
	<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication</link>
	<description>The spoils of the integration of PHP and ActionScript</description>
	<lastBuildDate>Wed, 19 May 2010 07:10:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mosesandi</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-8839</link>
		<dc:creator>mosesandi</dc:creator>
		<pubDate>Thu, 07 Jan 2010 10:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-8839</guid>
		<description>Hi Wade, how about the OpenID login code you wrote? :)</description>
		<content:encoded><![CDATA[<p>Hi Wade, how about the OpenID login code you wrote? <img src='http://wadearnold.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philou</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-2411</link>
		<dc:creator>philou</dc:creator>
		<pubDate>Sun, 03 May 2009 13:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-2411</guid>
		<description>Hi Wade,

I agree with the previous two posts, that there needs to be a way to check whether a specific method-call handled by the AMF Server is authorized. My present solution is to check the ZF Acess Control List inside every method being called by the AMF Server, but that&#039;s not a very elegant solution.

While we are at it, would it be possible to implement the $server-&gt;fault() method? It seems to me that it would just have to duplicate the part of the $server-&gt;handle() method responsible for dealing with exceptions thrown by attached functions.

Many thanks for agreat AMF server implementation!!
p.</description>
		<content:encoded><![CDATA[<p>Hi Wade,</p>
<p>I agree with the previous two posts, that there needs to be a way to check whether a specific method-call handled by the AMF Server is authorized. My present solution is to check the ZF Acess Control List inside every method being called by the AMF Server, but that&#8217;s not a very elegant solution.</p>
<p>While we are at it, would it be possible to implement the $server-&gt;fault() method? It seems to me that it would just have to duplicate the part of the $server-&gt;handle() method responsible for dealing with exceptions thrown by attached functions.</p>
<p>Many thanks for agreat AMF server implementation!!<br />
p.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VetMax</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-1796</link>
		<dc:creator>VetMax</dc:creator>
		<pubDate>Thu, 02 Apr 2009 08:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-1796</guid>
		<description>I&#039;ve got exactly the same problem as Lasse Moos. How can i implement beforefilter?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got exactly the same problem as Lasse Moos. How can i implement beforefilter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lasse Moos</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-1124</link>
		<dc:creator>Lasse Moos</dc:creator>
		<pubDate>Thu, 19 Feb 2009 17:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-1124</guid>
		<description>Hello Wade,
I was wondering, in amfphp we had a beforefilter, what would be the equivalent of that in zend_amf?

I have this simple example:

class BackendManager {
	
	public function __construct() {
		if($_SESSION[&#039;logged_in&#039;] === TRUE){
			return false;
			exit;
		}
	}

	public function getProducts() {
        //Function stuff here...
        }
}

So when i call getProducts from flex, I would like the constructor to check whether a user is logged in, and if not return false and exit the script so that getProducts() won&#039;t be called..

I&#039;m trying to use the constructor the way I used amfphp&#039;s beforefilter, not possible?</description>
		<content:encoded><![CDATA[<p>Hello Wade,<br />
I was wondering, in amfphp we had a beforefilter, what would be the equivalent of that in zend_amf?</p>
<p>I have this simple example:</p>
<p>class BackendManager {</p>
<p>	public function __construct() {<br />
		if($_SESSION['logged_in'] === TRUE){<br />
			return false;<br />
			exit;<br />
		}<br />
	}</p>
<p>	public function getProducts() {<br />
        //Function stuff here&#8230;<br />
        }<br />
}</p>
<p>So when i call getProducts from flex, I would like the constructor to check whether a user is logged in, and if not return false and exit the script so that getProducts() won&#8217;t be called..</p>
<p>I&#8217;m trying to use the constructor the way I used amfphp&#8217;s beforefilter, not possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Craigo</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-803</link>
		<dc:creator>Keith Craigo</dc:creator>
		<pubDate>Sun, 11 Jan 2009 18:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-803</guid>
		<description>&lt;a href=&quot;#comment-718&quot; rel=&quot;nofollow&quot;&gt;@wadearnold&lt;/a&gt; 
Wade,
The tutorial is now online.</description>
		<content:encoded><![CDATA[<p><a href="#comment-718" rel="nofollow">@wadearnold</a><br />
Wade,<br />
The tutorial is now online.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Craigo</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-801</link>
		<dc:creator>Keith Craigo</dc:creator>
		<pubDate>Sun, 11 Jan 2009 00:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-801</guid>
		<description>&lt;a href=&quot;#comment-718&quot; rel=&quot;nofollow&quot;&gt;@wadearnold&lt;/a&gt; 
Wade,
I finally got some spare time to finish the 3rd tutorial, but I wanted to get your permission to use the functions in your post &quot;Zend Amf now with php session support&quot; before I post it. I&#039;ve provided links back to your post in the tutorial and in the source as well. 

Thank you again for your hard work.

Keith</description>
		<content:encoded><![CDATA[<p><a href="#comment-718" rel="nofollow">@wadearnold</a><br />
Wade,<br />
I finally got some spare time to finish the 3rd tutorial, but I wanted to get your permission to use the functions in your post &#8220;Zend Amf now with php session support&#8221; before I post it. I&#8217;ve provided links back to your post in the tutorial and in the source as well. </p>
<p>Thank you again for your hard work.</p>
<p>Keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wadearnold</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-718</link>
		<dc:creator>wadearnold</dc:creator>
		<pubDate>Wed, 31 Dec 2008 00:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-718</guid>
		<description>&lt;a href=&quot;#comment-711&quot; rel=&quot;nofollow&quot;&gt;@Keith Craigo&lt;/a&gt; Keith go get the latest trunk and make your third tutorial!</description>
		<content:encoded><![CDATA[<p><a href="#comment-711" rel="nofollow">@Keith Craigo</a> Keith go get the latest trunk and make your third tutorial!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flashbookmarks</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-716</link>
		<dc:creator>Flashbookmarks</dc:creator>
		<pubDate>Tue, 30 Dec 2008 16:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-716</guid>
		<description>Awesome Keith, there comes to power of the zend framework :)

@wade keep up the good work.</description>
		<content:encoded><![CDATA[<p>Awesome Keith, there comes to power of the zend framework <img src='http://wadearnold.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>@wade keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Craigo</title>
		<link>http://wadearnold.com/blog/flash/zend_amf/zend-amfauthacl-secured-amf-communication/comment-page-1#comment-711</link>
		<dc:creator>Keith Craigo</dc:creator>
		<pubDate>Tue, 30 Dec 2008 00:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://wadearnold.com/blog/?p=179#comment-711</guid>
		<description>Wade,
Thank you for taking the time to review and posting this too. 
Looking forward to the updates.</description>
		<content:encoded><![CDATA[<p>Wade,<br />
Thank you for taking the time to review and posting this too.<br />
Looking forward to the updates.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
