<?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: Talking to Erlang</title>
	<atom:link href="http://humani.st/talking-to-erlang/feed/" rel="self" type="application/rss+xml" />
	<link>http://humani.st/talking-to-erlang/</link>
	<description>Computer Science, Business, Blogging, and Technology Blog by Luke Hoersten</description>
	<lastBuildDate>Wed, 14 Dec 2011 15:30:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Luke Hoersten</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10784</link>
		<dc:creator>Luke Hoersten</dc:creator>
		<pubDate>Sun, 24 May 2009 07:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10784</guid>
		<description>Looks cool. Thanks.</description>
		<content:encoded><![CDATA[<p>Looks cool. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Hoersten</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10783</link>
		<dc:creator>Luke Hoersten</dc:creator>
		<pubDate>Sun, 24 May 2009 07:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10783</guid>
		<description>Thanks for the fixes. I actually did run this before posting it so they must have changed the interface... as for the missing semicolon, perhaps a bad paste?</description>
		<content:encoded><![CDATA[<p>Thanks for the fixes. I actually did run this before posting it so they must have changed the interface&#8230; as for the missing semicolon, perhaps a bad paste?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Hoersten</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10717</link>
		<dc:creator>Luke Hoersten</dc:creator>
		<pubDate>Sun, 24 May 2009 03:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10717</guid>
		<description>Looks cool. Thanks.</description>
		<content:encoded><![CDATA[<p>Looks cool. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Hoersten</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10716</link>
		<dc:creator>Luke Hoersten</dc:creator>
		<pubDate>Sun, 24 May 2009 03:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10716</guid>
		<description>Thanks for the fixes. I actually did run this before posting it so they must have changed the interface... as for the missing semicolon, perhaps a bad paste?</description>
		<content:encoded><![CDATA[<p>Thanks for the fixes. I actually did run this before posting it so they must have changed the interface&#8230; as for the missing semicolon, perhaps a bad paste?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Venediger</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10714</link>
		<dc:creator>Luke Venediger</dc:creator>
		<pubDate>Sat, 16 May 2009 19:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10714</guid>
		<description>Also, Req:ok() takes a single tuple, not three arguments. So, this:&lt;br&gt;Req:ok(&quot;text/plain&quot;,&lt;br&gt;                   [{&quot;User-Agent&quot;, &quot;Erlang/example/0.1&quot;}],&lt;br&gt;                   &lt;&lt;&quot;Processing Request&quot;&gt;&gt;)&lt;br&gt;&lt;br&gt;Should be this:&lt;br&gt;Req:ok( { &quot;text/plain&quot;,&lt;br&gt;                   [{&quot;User-Agent&quot;, &quot;Erlang/example/0.1&quot;}],&lt;br&gt;                   &lt;&lt;&quot;Processing Request&quot;&gt;&gt;&lt;br&gt;               } )&lt;br&gt;&lt;br&gt;This had me stumped for hours!</description>
		<content:encoded><![CDATA[<p>Also, Req:ok() takes a single tuple, not three arguments. So, this:<br />Req:ok(&#8220;text/plain&#8221;,<br />                   [{"User-Agent", "Erlang/example/0.1"}],<br />                   &lt;&lt;&#8221;Processing Request&#8221;&gt;&gt;)</p>
<p>Should be this:<br />Req:ok( { &#8220;text/plain&#8221;,<br />                   [{"User-Agent", "Erlang/example/0.1"}],<br />                   &lt;&lt;&#8221;Processing Request&#8221;&gt;&gt;<br />               } )</p>
<p>This had me stumped for hours!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Sheehy</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10713</link>
		<dc:creator>Justin Sheehy</dc:creator>
		<pubDate>Sat, 16 May 2009 18:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10713</guid>
		<description>Luke,&lt;br&gt;&lt;br&gt;This is a nice little example, and Mochiweb is indeed a great HTTP driver for Erlang.  If you want a layer atop Mochiweb that adds easy and RESTful extensibility to your services, you might want to check out Webmachine:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://bitbucket.org/justin/webmachine&quot; rel=&quot;nofollow&quot;&gt;http://bitbucket.org/justin/webmachine&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Justin</description>
		<content:encoded><![CDATA[<p>Luke,</p>
<p>This is a nice little example, and Mochiweb is indeed a great HTTP driver for Erlang.  If you want a layer atop Mochiweb that adds easy and RESTful extensibility to your services, you might want to check out Webmachine:</p>
<p><a href="http://bitbucket.org/justin/webmachine" rel="nofollow">http://bitbucket.org/justin/webmachine</a></p>
<p>Cheers,</p>
<p>Justin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Venediger</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10712</link>
		<dc:creator>Luke Venediger</dc:creator>
		<pubDate>Sat, 16 May 2009 18:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10712</guid>
		<description>Hi,&lt;br&gt;&lt;br&gt;You&#039;re missing a ; after &lt;&lt;&quot;Processing Request&quot;&gt;&gt;).&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Luke.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You&#39;re missing a ; after &lt;&lt;&#8221;Processing Request&#8221;&gt;&gt;).</p>
<p>Thanks,<br />Luke.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel palacio</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10652</link>
		<dc:creator>daniel palacio</dc:creator>
		<pubDate>Thu, 18 Sep 2008 21:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10652</guid>
		<description>Did you became to important to write a blog ????????????? how are thing&#039;s ????  I have to go to chicago sometime and visit you.</description>
		<content:encoded><![CDATA[<p>Did you became to important to write a blog ????????????? how are thing&#39;s ????  I have to go to chicago sometime and visit you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Hoersten</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10325</link>
		<dc:creator>Luke Hoersten</dc:creator>
		<pubDate>Tue, 29 Jul 2008 04:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10325</guid>
		<description>Good find. Just to clarify for the readers, JSON-RPC is a special specification for calling functions remotely. This example is just a simple HTTP body with JSON. Designed with the explicit intent of simplicity. More functionality would come from adding different URLs like REST. &lt;a href=&quot;http://weblog.hypotheticalabs.com/?p=282&quot;&gt;Kevin Smith&lt;/a&gt; has actually just completed a screencast that should describe this RESTful setup in more detail. I&#039;ll add a link when it becomes available.</description>
		<content:encoded><![CDATA[<p>Good find. Just to clarify for the readers, JSON-RPC is a special specification for calling functions remotely. This example is just a simple HTTP body with JSON. Designed with the explicit intent of simplicity. More functionality would come from adding different URLs like REST. <a href="http://weblog.hypotheticalabs.com/?p=282">Kevin Smith</a> has actually just completed a screencast that should describe this RESTful setup in more detail. I&#8217;ll add a link when it becomes available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://humani.st/talking-to-erlang/comment-page-1/#comment-10324</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Tue, 29 Jul 2008 03:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://humani.st/?p=393#comment-10324</guid>
		<description>luke,&lt;br&gt;check this out, a somewhat similar but more constrained way of exposing erlang methods/ functions&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.lshift.net/blog/2007/02/17/json-and-json-rpc-for-erlang&quot;&gt;http://www.lshift.net/blog/2007/02/17/json-and-...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>luke,<br />check this out, a somewhat similar but more constrained way of exposing erlang methods/ functions</p>
<p><a href="http://www.lshift.net/blog/2007/02/17/json-and-json-rpc-for-erlang">http://www.lshift.net/blog/2007/02/17/json-and-&#8230;</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

