<?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 for Conrad Strydom</title>
	<atom:link href="http://www.conradstrydom.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.conradstrydom.com</link>
	<description>views and commentary from a web engineer</description>
	<lastBuildDate>Tue, 31 Mar 2009 09:33:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Mobile phone data projectors. Paradigm shift? by Etienne</title>
		<link>http://www.conradstrydom.com/2009/02/10/mobile-phone-data-projectors-paradigm-shift/comment-page-1/#comment-26</link>
		<dc:creator>Etienne</dc:creator>
		<pubDate>Tue, 31 Mar 2009 09:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=105#comment-26</guid>
		<description>Very cool, only one problem.....the battery power will be gone in a few minutes.</description>
		<content:encoded><![CDATA[<p>Very cool, only one problem&#8230;..the battery power will be gone in a few minutes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bit on RESTful webservices by Stii</title>
		<link>http://www.conradstrydom.com/2009/02/10/a-bit-on-restful-webservices/comment-page-1/#comment-35</link>
		<dc:creator>Stii</dc:creator>
		<pubDate>Thu, 19 Feb 2009 17:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=116#comment-35</guid>
		<description>No, I hear you! REST is not a silver bullet. There are some instances (like your example) where it is not 100% practical.</description>
		<content:encoded><![CDATA[<p>No, I hear you! REST is not a silver bullet. There are some instances (like your example) where it is not 100% practical.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bit on RESTful webservices by Dewald Botha</title>
		<link>http://www.conradstrydom.com/2009/02/10/a-bit-on-restful-webservices/comment-page-1/#comment-34</link>
		<dc:creator>Dewald Botha</dc:creator>
		<pubDate>Thu, 19 Feb 2009 17:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=116#comment-34</guid>
		<description>@Stii:  Yip - i agree, but the problem I always found with REST is when you try to go too deep into the rabbit hole.

Take for example a call where one would like to pull all users from a site with a user ID between 1 and 10, who has joined between 2008 and 2009 with the surname &#039;DOE&#039;.

You could translate that into a REST URI, but it would end up probably being longer than the wall of China.

I think one has too find a balance between using a stateless interface such as REST and something such as XML-RPC or SOAP.

Maybe a RESTful SOAP service - ROAP. :-)</description>
		<content:encoded><![CDATA[<p>@Stii:  Yip &#8211; i agree, but the problem I always found with REST is when you try to go too deep into the rabbit hole.</p>
<p>Take for example a call where one would like to pull all users from a site with a user ID between 1 and 10, who has joined between 2008 and 2009 with the surname &#8216;DOE&#8217;.</p>
<p>You could translate that into a REST URI, but it would end up probably being longer than the wall of China.</p>
<p>I think one has too find a balance between using a stateless interface such as REST and something such as XML-RPC or SOAP.</p>
<p>Maybe a RESTful SOAP service &#8211; ROAP. <img src='http://www.conradstrydom.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bit on RESTful webservices by Stii</title>
		<link>http://www.conradstrydom.com/2009/02/10/a-bit-on-restful-webservices/comment-page-1/#comment-33</link>
		<dc:creator>Stii</dc:creator>
		<pubDate>Mon, 16 Feb 2009 11:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=116#comment-33</guid>
		<description>Dewald, I think there is a quest for API and site to become one. I.o.w. if you have RPC web services you always have to maintain it separately to your site. REST allows you to sort of close that gap in that both human and machine can use the same thing.</description>
		<content:encoded><![CDATA[<p>Dewald, I think there is a quest for API and site to become one. I.o.w. if you have RPC web services you always have to maintain it separately to your site. REST allows you to sort of close that gap in that both human and machine can use the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bit on RESTful webservices by Conrad</title>
		<link>http://www.conradstrydom.com/2009/02/10/a-bit-on-restful-webservices/comment-page-1/#comment-32</link>
		<dc:creator>Conrad</dc:creator>
		<pubDate>Wed, 11 Feb 2009 11:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=116#comment-32</guid>
		<description>IMHO the biggest difference between REST and RPC is that REST is noun based (don&#039;t confuse with the HTTP verbs) and RPC is verb based.

Example of REST noun interaction:
/user/1

vs RPC verb interaction
getUser: 1

The main difference here is that the REST implementation has a single unified interface to your objects (nouns) and is easy to use for developers when adding new objects etc.

The appropriate verbs to use with RPC is not that obvious from the word go and the net effect of a particular action is not that clear either and may become ambigious. Anyhow .. just my 2 cents.</description>
		<content:encoded><![CDATA[<p>IMHO the biggest difference between REST and RPC is that REST is noun based (don&#8217;t confuse with the HTTP verbs) and RPC is verb based.</p>
<p>Example of REST noun interaction:<br />
/user/1</p>
<p>vs RPC verb interaction<br />
getUser: 1</p>
<p>The main difference here is that the REST implementation has a single unified interface to your objects (nouns) and is easy to use for developers when adding new objects etc.</p>
<p>The appropriate verbs to use with RPC is not that obvious from the word go and the net effect of a particular action is not that clear either and may become ambigious. Anyhow .. just my 2 cents.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A bit on RESTful webservices by Dewald Botha</title>
		<link>http://www.conradstrydom.com/2009/02/10/a-bit-on-restful-webservices/comment-page-1/#comment-31</link>
		<dc:creator>Dewald Botha</dc:creator>
		<pubDate>Wed, 11 Feb 2009 10:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=116#comment-31</guid>
		<description>In theory rest seems like an easy solution, but if you are like me you&#039;d prefer the soap/xml-rpc way of doing things.

Okay, I know it is easy to just simply PUT something to an human readable URI, but what&#039;s wrong with calling a function with xml-rpc/soap.

Doesn&#039;t it kind of keep the flavor going with the idea of using objects and functions.

Well, thats just me.</description>
		<content:encoded><![CDATA[<p>In theory rest seems like an easy solution, but if you are like me you&#8217;d prefer the soap/xml-rpc way of doing things.</p>
<p>Okay, I know it is easy to just simply PUT something to an human readable URI, but what&#8217;s wrong with calling a function with xml-rpc/soap.</p>
<p>Doesn&#8217;t it kind of keep the flavor going with the idea of using objects and functions.</p>
<p>Well, thats just me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pantech releases blow-controlled cellphone by Dewald Botha</title>
		<link>http://www.conradstrydom.com/2009/02/04/pantech-releases-blow-controlled-cellphone/comment-page-1/#comment-22</link>
		<dc:creator>Dewald Botha</dc:creator>
		<pubDate>Wed, 04 Feb 2009 10:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=80#comment-22</guid>
		<description>Lol - if only such phones existed.  What fun wouldn&#039;t phone calls be, but hey - if you can dream it you can do it.</description>
		<content:encoded><![CDATA[<p>Lol &#8211; if only such phones existed.  What fun wouldn&#8217;t phone calls be, but hey &#8211; if you can dream it you can do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordcamp SA 2008 by Recent Links Tagged With "mullenweg" - JabberTags</title>
		<link>http://www.conradstrydom.com/2008/08/25/wordcamp-sa-2008/comment-page-1/#comment-21</link>
		<dc:creator>Recent Links Tagged With "mullenweg" - JabberTags</dc:creator>
		<pubDate>Thu, 11 Dec 2008 11:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=62#comment-21</guid>
		<description>[...] links &gt;&gt; mullenweg   Matt Mullenweg: WordPress 2.7 and Beyond Saved by punkdkel on Thu 20-11-2008   Wordcamp SA 2008 Saved by mattbot on Thu 20-11-2008   Captchas. No, I didn’t sneeze. Saved by Maximum40 on Wed [...]</description>
		<content:encoded><![CDATA[<p>[...] links &gt;&gt; mullenweg   Matt Mullenweg: WordPress 2.7 and Beyond Saved by punkdkel on Thu 20-11-2008   Wordcamp SA 2008 Saved by mattbot on Thu 20-11-2008   Captchas. No, I didn’t sneeze. Saved by Maximum40 on Wed [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordcamp SA 2008 by Butterflies Instead &#187; Lessons from Matt Mullenweg</title>
		<link>http://www.conradstrydom.com/2008/08/25/wordcamp-sa-2008/comment-page-1/#comment-20</link>
		<dc:creator>Butterflies Instead &#187; Lessons from Matt Mullenweg</dc:creator>
		<pubDate>Fri, 29 Aug 2008 22:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=62#comment-20</guid>
		<description>[...] to be here in San Fran&#8230; whoops, I mean Cape Town&#8230;&#8221; When this was mentioned on someone&#8217;s blog later, and the blogger suggested that maybe it was more than just a slip of the tongue, Matt left a [...]</description>
		<content:encoded><![CDATA[<p>[...] to be here in San Fran&#8230; whoops, I mean Cape Town&#8230;&#8221; When this was mentioned on someone&#8217;s blog later, and the blogger suggested that maybe it was more than just a slip of the tongue, Matt left a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordcamp SA 2008 by Matt</title>
		<link>http://www.conradstrydom.com/2008/08/25/wordcamp-sa-2008/comment-page-1/#comment-19</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 26 Aug 2008 00:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://conradstrydom.wordpress.com/?p=62#comment-19</guid>
		<description>Maybe it was. :)</description>
		<content:encoded><![CDATA[<p>Maybe it was. <img src='http://www.conradstrydom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

