<?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: Build a better Login with Adobe Flex, Zend_Amf, Zend_Auth, and Zend_Acl &#8211; On The Flex Side</title>
	<atom:link href="http://www.keithcraigo.com/archives/66/feed" rel="self" type="application/rss+xml" />
	<link>http://www.keithcraigo.com/archives/66</link>
	<description>Random stuff about web development</description>
	<lastBuildDate>Wed, 18 Aug 2010 20:59:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Keith</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-499</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Thu, 12 Aug 2010 14:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-499</guid>
		<description>Hi Teneb,
Sorry about that but good catch, the problem was, phpMyAdmin exports the column names enclosed in quotes and the INSERTS were not complete INSERTS my fault on that for not selecting the right option. The SQL is now updated in the tutorial.

Thanks for catching this.

Keith</description>
		<content:encoded><![CDATA[<p>Hi Teneb,<br />
Sorry about that but good catch, the problem was, phpMyAdmin exports the column names enclosed in quotes and the INSERTS were not complete INSERTS my fault on that for not selecting the right option. The SQL is now updated in the tutorial.</p>
<p>Thanks for catching this.</p>
<p>Keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Teneb</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-494</link>
		<dc:creator>Teneb</dc:creator>
		<pubDate>Wed, 04 Aug 2010 10:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-494</guid>
		<description>sorry. it&#039;s this error : Error

SQL query:

INSERT INTO `admin`
VALUES (
‘admin’, ‘password’, &#039;admin’, ‘admin’, ‘admin’); INSERT INTO `admin` VALUES(‘manager’, ‘password’,&#039;manager’, ‘manager’, ‘manager’
);

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;managerâ€™, â€˜managerâ€™,  â€˜managerâ€™)&#039; at line 2</description>
		<content:encoded><![CDATA[<p>sorry. it&#8217;s this error : Error</p>
<p>SQL query:</p>
<p>INSERT INTO `admin`<br />
VALUES (<br />
‘admin’, ‘password’, &#8216;admin’, ‘admin’, ‘admin’); INSERT INTO `admin` VALUES(‘manager’, ‘password’,&#8217;manager’, ‘manager’, ‘manager’<br />
);</p>
<p>MySQL said: Documentation<br />
#1064 &#8211; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;managerâ€™, â€˜managerâ€™,  â€˜managerâ€™)&#8217; at line 2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Teneb</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-493</link>
		<dc:creator>Teneb</dc:creator>
		<pubDate>Wed, 04 Aug 2010 09:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-493</guid>
		<description>i can&#039;t get the sql code into mamp. I keep getting the error : Error

SQL query:

CREATE TABLE IF NOT EXISTS `admin` (
`username` varchar( 20 ) NOT NULL ,
`password` varchar( 20 ) NOT NULL ,
`realfirstName` varchar( 20 ) NOT NULL ,
`reallastName` varchar( 20 ) NOT NULL ,
`role` varchar( 20 ) NOT NULL ,
PRIMARY KEY &amp; nbsp;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;&amp;nbsp&#039; at line 5
[ Back ]</description>
		<content:encoded><![CDATA[<p>i can&#8217;t get the sql code into mamp. I keep getting the error : Error</p>
<p>SQL query:</p>
<p>CREATE TABLE IF NOT EXISTS `admin` (<br />
`username` varchar( 20 ) NOT NULL ,<br />
`password` varchar( 20 ) NOT NULL ,<br />
`realfirstName` varchar( 20 ) NOT NULL ,<br />
`reallastName` varchar( 20 ) NOT NULL ,<br />
`role` varchar( 20 ) NOT NULL ,<br />
PRIMARY KEY &amp; nbsp;</p>
<p>MySQL said: Documentation<br />
#1064 &#8211; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;&amp;nbsp&#8217; at line 5<br />
[ Back ]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-488</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Fri, 18 Jun 2010 02:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-488</guid>
		<description>Hi oluwaseun,
Glad you were able to resolve the first issue. 

For this issue.
1st thing to check - make sure your variables in your Flex code match your php variables exactly, case matters.
2nd - make sure you&#039;ve mapped your Flex Value Object or Transfer object to it&#039;s PHP counter part. 

This error is usually caused by the Flex object and the PHP object don&#039;t match.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi oluwaseun,<br />
Glad you were able to resolve the first issue. </p>
<p>For this issue.<br />
1st thing to check &#8211; make sure your variables in your Flex code match your php variables exactly, case matters.<br />
2nd &#8211; make sure you&#8217;ve mapped your Flex Value Object or Transfer object to it&#8217;s PHP counter part. </p>
<p>This error is usually caused by the Flex object and the PHP object don&#8217;t match.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oluwaseun</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-487</link>
		<dc:creator>oluwaseun</dc:creator>
		<pubDate>Thu, 17 Jun 2010 17:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-487</guid>
		<description>I found the problem; the Acl.php class was not included in the Zend amf package so I had to download the full zend framework then pick up that file and I added it to the Zend_amf library. I do no get any fatal errors again as well as warning errors only a notice. But another problem arose and I couldn&#039;t figure this out. 

[User Login] ‚Äì Error Connecting![FaultEvent fault=[RPC Fault faultString=&quot;Send failed&quot; faultCode=&quot;Client.Error.MessageSend&quot; faultDetail=&quot;Channel.Connect.Failed error NetConnection.Call.BadVersion: : url: &#039;http://localhost:8888/AccessControl/&#039;&quot;] messageId=&quot;6AFBB0AE-1C7F-7F0F-FF7B-4701695C9AB8&quot; type=&quot;fault&quot; bubbles=false cancelable=true eventPhase=2]

Any ideas?</description>
		<content:encoded><![CDATA[<p>I found the problem; the Acl.php class was not included in the Zend amf package so I had to download the full zend framework then pick up that file and I added it to the Zend_amf library. I do no get any fatal errors again as well as warning errors only a notice. But another problem arose and I couldn&#8217;t figure this out. </p>
<p>[User Login] ‚Äì Error Connecting![FaultEvent fault=[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.BadVersion: : url: 'http://localhost:8888/AccessControl/'"] messageId=&#8221;6AFBB0AE-1C7F-7F0F-FF7B-4701695C9AB8&#8243; type=&#8221;fault&#8221; bubbles=false cancelable=true eventPhase=2]</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oluwaseun</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-485</link>
		<dc:creator>oluwaseun</dc:creator>
		<pubDate>Thu, 17 Jun 2010 10:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-485</guid>
		<description>Great work Keith. to tell you the truth I have been trying a get a simple login with the Zend_Amf. Except I&#039;m missing it somewhere, I clicked the login and nothing happens. so i try to load http://localhost:8888/AccesscontrolExample/ and the error was Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in /Users/kevinbowers/Sites/AccessControlExample/index.php on line 13

Fatal error: require_once() [function.require]: Failed opening required &#039;Zend/Loader.php&#039; (include_path=&#039;.:/Applications/MAMP/bin/php5/lib/php:../../frameworks/:../../utils/&#039;) in /Users/kevinbowers/Sites/AccessControlExample/index.php on line 13. First let me say my server structure is /users/Sites/ thats where I pointed my MAMP to. I have a feeling the directory structure is wrong. Any help will go a long way . Thanks Keith.</description>
		<content:encoded><![CDATA[<p>Great work Keith. to tell you the truth I have been trying a get a simple login with the Zend_Amf. Except I&#8217;m missing it somewhere, I clicked the login and nothing happens. so i try to load <a href="http://localhost:8888/AccesscontrolExample/" rel="nofollow">http://localhost:8888/AccesscontrolExample/</a> and the error was Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in /Users/kevinbowers/Sites/AccessControlExample/index.php on line 13</p>
<p>Fatal error: require_once() [function.require]: Failed opening required &#8216;Zend/Loader.php&#8217; (include_path=&#8217;.:/Applications/MAMP/bin/php5/lib/php:../../frameworks/:../../utils/&#8217;) in /Users/kevinbowers/Sites/AccessControlExample/index.php on line 13. First let me say my server structure is /users/Sites/ thats where I pointed my MAMP to. I have a feeling the directory structure is wrong. Any help will go a long way . Thanks Keith.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adobe Flex and Zend Framework - watch this 'cookbook' &#124; Development Trends</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-166</link>
		<dc:creator>Adobe Flex and Zend Framework - watch this 'cookbook' &#124; Development Trends</dc:creator>
		<pubDate>Thu, 13 May 2010 15:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-166</guid>
		<description>[...] The first article describes how to build a Flex client that uses AMF services based on Zend Framework &#8211; click here. [...]</description>
		<content:encoded><![CDATA[<p>[...] The first article describes how to build a Flex client that uses AMF services based on Zend Framework &#8211; click here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-133</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Thu, 04 Mar 2010 03:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-133</guid>
		<description>Thank you, I&#039;m glad it was helpful
Keith</description>
		<content:encoded><![CDATA[<p>Thank you, I&#8217;m glad it was helpful<br />
Keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-130</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 26 Feb 2010 17:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-130</guid>
		<description>Excellent article.. have been searching for hours and this is exactly what I&#039;ve been looking for! Thanks very very much!</description>
		<content:encoded><![CDATA[<p>Excellent article.. have been searching for hours and this is exactly what I&#8217;ve been looking for! Thanks very very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandor</title>
		<link>http://www.keithcraigo.com/archives/66/comment-page-1#comment-124</link>
		<dc:creator>Sandor</dc:creator>
		<pubDate>Tue, 01 Dec 2009 15:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.keithcraigo.com/?p=66#comment-124</guid>
		<description>Hi Keith,
It was definitely your code that was wrong I commented out the SingletonEnforcer references in the ModelLocator.as file and the error is gone. Everything works fine since them apart from some visual glitches

r. Sandor</description>
		<content:encoded><![CDATA[<p>Hi Keith,<br />
It was definitely your code that was wrong I commented out the SingletonEnforcer references in the ModelLocator.as file and the error is gone. Everything works fine since them apart from some visual glitches</p>
<p>r. Sandor</p>
]]></content:encoded>
	</item>
</channel>
</rss>
