<?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: Restling with Restlet</title>
	<atom:link href="http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/</link>
	<description>adventures in code</description>
	<lastBuildDate>Sun, 04 Sep 2011 07:24:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jim Barritt</title>
		<link>http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/comment-page-1/#comment-8367</link>
		<dc:creator>Jim Barritt</dc:creator>
		<pubDate>Mon, 02 Mar 2009 16:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/#comment-8367</guid>
		<description>Thanks David, 

It&#039;s interesting that you found something similar. I will have a look at Mattress. Actually I have been thinking about writing my own framework so will be interested to see what&#039;s in Mattress. 

It also links to &lt;a href=&#039;http://jcp.org/en/jsr/detail?id=311&#039; rel=&quot;nofollow&quot;&gt;JSR 311&lt;/a&gt; - JAX-RS: The JavaTM API for RESTful Web Services.</description>
		<content:encoded><![CDATA[<p>Thanks David, </p>
<p>It&#8217;s interesting that you found something similar. I will have a look at Mattress. Actually I have been thinking about writing my own framework so will be interested to see what&#8217;s in Mattress. </p>
<p>It also links to <a href='http://jcp.org/en/jsr/detail?id=311' rel="nofollow">JSR 311</a> &#8211; JAX-RS: The JavaTM API for RESTful Web Services.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/comment-page-1/#comment-8366</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 02 Mar 2009 16:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/#comment-8366</guid>
		<description>We re-evaluated our usage of the Mattress Framework (http://mattressframework.org/) recently, to see if we would rather move to Restlet. We concluded that Restlet was way too complex and too feature rich to fit the bill (after being used to the elegant simplicity of Mattress).

So we postponed our migration until Spring 3.0 final is out, as we will most likely migrate to their REST support.</description>
		<content:encoded><![CDATA[<p>We re-evaluated our usage of the Mattress Framework (<a href="http://mattressframework.org/" rel="nofollow">http://mattressframework.org/</a>) recently, to see if we would rather move to Restlet. We concluded that Restlet was way too complex and too feature rich to fit the bill (after being used to the elegant simplicity of Mattress).</p>
<p>So we postponed our migration until Spring 3.0 final is out, as we will most likely migrate to their REST support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Barritt</title>
		<link>http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/comment-page-1/#comment-8365</link>
		<dc:creator>Jim Barritt</dc:creator>
		<pubDate>Mon, 02 Mar 2009 16:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/#comment-8365</guid>
		<description>Hi Lasse,

Thanks for the comment. 

Yeah, In my &lt;a href=&quot;http://jimbarritt.com/non-random/2009/02/08/the-future-of-frameworks/&quot; rel=&quot;nofollow&quot;&gt;previous post&lt;/a&gt; about frameworks , I thought I might be really talking about a library. Also Pat picked up on the distinction there too. 

r.e. Isolating our code from the framework, its a good point, indeed this is what we ended up doing, creating our own API and just using Restlet underneath. One down side to this is that there is more code in the application, so its another level of indirection to go through for anyone maintaining it.</description>
		<content:encoded><![CDATA[<p>Hi Lasse,</p>
<p>Thanks for the comment. </p>
<p>Yeah, In my <a href="http://jimbarritt.com/non-random/2009/02/08/the-future-of-frameworks/" rel="nofollow">previous post</a> about frameworks , I thought I might be really talking about a library. Also Pat picked up on the distinction there too. </p>
<p>r.e. Isolating our code from the framework, its a good point, indeed this is what we ended up doing, creating our own API and just using Restlet underneath. One down side to this is that there is more code in the application, so its another level of indirection to go through for anyone maintaining it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lasse</title>
		<link>http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/comment-page-1/#comment-8363</link>
		<dc:creator>Lasse</dc:creator>
		<pubDate>Mon, 02 Mar 2009 15:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://jimbarritt.com/non-random/2009/03/02/restling-with-restlet/#comment-8363</guid>
		<description>&gt; I feel that frameworks should be transparent and non-invasive

You mean it should be a library? ;-)

Anyway couldn&#039;t you get away with delegation at your framework hot spots? Basically, do the simplest possible marshalling and call out to your own classes. Then you could keep your classes pure and only worry about Restlet for integration?</description>
		<content:encoded><![CDATA[<p>&gt; I feel that frameworks should be transparent and non-invasive</p>
<p>You mean it should be a library? ;-)</p>
<p>Anyway couldn&#8217;t you get away with delegation at your framework hot spots? Basically, do the simplest possible marshalling and call out to your own classes. Then you could keep your classes pure and only worry about Restlet for integration?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

