<?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: Using RubyAmf for creating a CRUD application in Rails</title>
	<atom:link href="http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/</link>
	<description>All About Everything</description>
	<lastBuildDate>Mon, 07 Dec 2009 09:03:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: erick</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-2352</link>
		<dc:creator>erick</dc:creator>
		<pubDate>Mon, 07 Dec 2009 09:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-2352</guid>
		<description>I know I&#039;m a few months late but...
@Mark 
I had the same issue as you with #2044 error. 
I managed to get it to work(in a development environment) by
adding my localhost path+port to the Remoting Service call.
So in your .mxml file change it to this:

private var localService:String = &quot;http://localhost:3001&quot;
private var service:RemotingService = new RemotingService(localService+&quot;/rubyamf/gateway&quot;, &quot;BlogPostsController&quot;);

Of course, useyour localpath as the data for localService.
In production, i might as well just use the serviceconfigs.xml file which allows me to change server settings without having to reompile
cheers
erick</description>
		<content:encoded><![CDATA[<p>I know I&#8217;m a few months late but&#8230;<br />
@Mark<br />
I had the same issue as you with #2044 error.<br />
I managed to get it to work(in a development environment) by<br />
adding my localhost path+port to the Remoting Service call.<br />
So in your .mxml file change it to this:</p>
<p>private var localService:String = &#8220;http://localhost:3001&#8243;<br />
private var service:RemotingService = new RemotingService(localService+&#8221;/rubyamf/gateway&#8221;, &#8220;BlogPostsController&#8221;);</p>
<p>Of course, useyour localpath as the data for localService.<br />
In production, i might as well just use the serviceconfigs.xml file which allows me to change server settings without having to reompile<br />
cheers<br />
erick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-2324</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 01 Dec 2009 12:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-2324</guid>
		<description>Awesome tutorial, thanks you.
I also bumped to the previous problem with

Error #2044: Unhandled CONNECTION_ERROR:. text= 

error.


What I did is in BlogPost.as I replace line with 
RemotingService(&quot;/rubyamf/gateway&quot;, &quot;BlogPostsController&quot;) 

to

RemotingService(&quot;http://localhost:3000/rubyamf/gateway&quot;, &quot;BlogPostsController&quot;)

Of course its hardcoded and we don&#039;t want this, but rails can pass hostname and port number to flex and then we can pass them into BlogPost.as and build RemoteService url.

Cheers Alex</description>
		<content:encoded><![CDATA[<p>Awesome tutorial, thanks you.<br />
I also bumped to the previous problem with</p>
<p>Error #2044: Unhandled CONNECTION_ERROR:. text= </p>
<p>error.</p>
<p>What I did is in BlogPost.as I replace line with<br />
RemotingService(&#8220;/rubyamf/gateway&#8221;, &#8220;BlogPostsController&#8221;) </p>
<p>to</p>
<p>RemotingService(&#8220;http://localhost:3000/rubyamf/gateway&#8221;, &#8220;BlogPostsController&#8221;)</p>
<p>Of course its hardcoded and we don&#8217;t want this, but rails can pass hostname and port number to flex and then we can pass them into BlogPost.as and build RemoteService url.</p>
<p>Cheers Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DIVISION-DURCH-NULL</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-2109</link>
		<dc:creator>DIVISION-DURCH-NULL</dc:creator>
		<pubDate>Sat, 07 Nov 2009 15:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-2109</guid>
		<description>Many THX for this toturial. For my first AMF-steps it was an great help! For all German-speaking interested people i advice the current railsway-magazin. It include a paper with the headline &quot;As quick as a flash - Blitzschneller Rails-Flash-Datenaustausch via AMF&quot;. More Infos: http://blog.division-durch-null.de/2009/10/blitzschneller-rails-flash-datenaustausch-via-amf/

Have a lot fun!</description>
		<content:encoded><![CDATA[<p>Many THX for this toturial. For my first AMF-steps it was an great help! For all German-speaking interested people i advice the current railsway-magazin. It include a paper with the headline &#8220;As quick as a flash &#8211; Blitzschneller Rails-Flash-Datenaustausch via AMF&#8221;. More Infos: <a href="http://blog.division-durch-null.de/2009/10/blitzschneller-rails-flash-datenaustausch-via-amf/" rel="nofollow">http://blog.division-durch-null.de/2009/10/blitzschneller-rails-flash-datenaustausch-via-amf/</a></p>
<p>Have a lot fun!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BLOG: Division durch Null &#187; Blitzschneller Rails-Flash-Datenaustausch via AMF</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-2015</link>
		<dc:creator>BLOG: Division durch Null &#187; Blitzschneller Rails-Flash-Datenaustausch via AMF</dc:creator>
		<pubDate>Sun, 25 Oct 2009 16:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-2015</guid>
		<description>[...] Using RubyAmf for creating a CRUD application in Rails [...]</description>
		<content:encoded><![CDATA[<p>[...] Using RubyAmf for creating a CRUD application in Rails [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-726</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 08 Apr 2009 21:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-726</guid>
		<description>@Guarav:

Upon further testing, it turns out that the problem is using port 3000 instead of 80. http://localhost:3000/bin/amf_demo.html doesn&#039;t work when the ruby server is on port 3000. http://localhost/bin/amf_demo.html does when the ruby server is on port 80. Seems to be something in the ssr classes(?). I am not a RemoteObject expert in any way.

This is a pain since I want to leave my Apache server running on port 80 on my development box. 

Also, using a different port with different approaches to rubyamf (other tutorials) had no problem and it is something Peter Armstrong demos in &quot;Flexible Rails.&quot;

Any ideas how to fix this so it will work with a different port. Thanks.

Mark</description>
		<content:encoded><![CDATA[<p>@Guarav:</p>
<p>Upon further testing, it turns out that the problem is using port 3000 instead of 80. <a href="http://localhost:3000/bin/amf_demo.html" rel="nofollow">http://localhost:3000/bin/amf_demo.html</a> doesn&#8217;t work when the ruby server is on port 3000. <a href="http://localhost/bin/amf_demo.html" rel="nofollow">http://localhost/bin/amf_demo.html</a> does when the ruby server is on port 80. Seems to be something in the ssr classes(?). I am not a RemoteObject expert in any way.</p>
<p>This is a pain since I want to leave my Apache server running on port 80 on my development box. </p>
<p>Also, using a different port with different approaches to rubyamf (other tutorials) had no problem and it is something Peter Armstrong demos in &#8220;Flexible Rails.&#8221;</p>
<p>Any ideas how to fix this so it will work with a different port. Thanks.</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-722</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Wed, 08 Apr 2009 19:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-722</guid>
		<description>@Mark:
This error is probably related to a non-existent url.
&lt;a href=&quot;http://www.judahfrangipane.com/blog/?p=115&quot; rel=&quot;nofollow&quot;&gt;Please see here.&lt;/a&gt;
Also did you try the sample code that I provided in the blog post? and did that work?</description>
		<content:encoded><![CDATA[<p>@Mark:<br />
This error is probably related to a non-existent url.<br />
<a href="http://www.judahfrangipane.com/blog/?p=115" rel="nofollow">Please see here.</a><br />
Also did you try the sample code that I provided in the blog post? and did that work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-721</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 08 Apr 2009 19:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-721</guid>
		<description>Thanks for the tutorial. I am trying it with Rails 2.3.2 (using Eclipse and Aptana RadRails as a development environment. However, I done the various plugins via command line and have gotten rubyamf working with other demos). 

I get the following error at the end of step one:

Error #2044: Unhandled CONNECTION_ERROR:. text=

and so never get the object returned. Using mongrel server and the url for the test app is: http://Localhost:3000/bin/amf_demo.html.

Any ideas. Would like to progress through the rest of the demo. Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial. I am trying it with Rails 2.3.2 (using Eclipse and Aptana RadRails as a development environment. However, I done the various plugins via command line and have gotten rubyamf working with other demos). </p>
<p>I get the following error at the end of step one:</p>
<p>Error #2044: Unhandled CONNECTION_ERROR:. text=</p>
<p>and so never get the object returned. Using mongrel server and the url for the test app is: <a href="http://Localhost:3000/bin/amf_demo.html" rel="nofollow">http://Localhost:3000/bin/amf_demo.html</a>.</p>
<p>Any ideas. Would like to progress through the rest of the demo. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geekeerie Blog &#187; Blog Archive &#187; Reporting the first full day Ruby Event in India: The Ruby FunDay</title>
		<link>http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/comment-page-1/#comment-53</link>
		<dc:creator>Geekeerie Blog &#187; Blog Archive &#187; Reporting the first full day Ruby Event in India: The Ruby FunDay</dc:creator>
		<pubDate>Tue, 25 Nov 2008 09:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://allyourcodearebelongto.me/blog/2008/11/12/using-rubyamf-for-creating-a-crud-application-in-rails/#comment-53</guid>
		<description>[...] Right after lunch, was the one of the most awaited sessions of the day. Gaurav built an AIR client for his fictitious app called Blabber! It is just a co-incidence that the application name sounds like Yammer. You can see the details of his presentation on his blog  here. [...]</description>
		<content:encoded><![CDATA[<p>[...] Right after lunch, was the one of the most awaited sessions of the day. Gaurav built an AIR client for his fictitious app called Blabber! It is just a co-incidence that the application name sounds like Yammer. You can see the details of his presentation on his blog  here. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

