<?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: Start RESTing on your laurels</title>
	<atom:link href="http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/</link>
	<description>Web Application Design &#38; Development</description>
	<lastBuildDate>Thu, 29 Jul 2010 10:34:30 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: B. Santos</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-1299</link>
		<dc:creator>B. Santos</dc:creator>
		<pubDate>Tue, 12 Jan 2010 04:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-1299</guid>
		<description>Andy, 

Great work that you&#039;ve done with this very useful REST client class!
I&#039;ve been able to quickly put up a simple XML based GET request with this class. 

My main comment (minor) is how the port number (as well as credentials) could be easily set through the URI/URL given in constructor or when setting the url. One should not be the need  to explicitly set the port argument in such case. For example:

RESTService service = new RESTService(&quot;http://localhost:8080/app/rest/get&quot;)

as opposed to:

RESTService service = new RESTService(&quot;http://localhost:8080/app/rest/get&quot;, 8080)

Great stuff!</description>
		<content:encoded><![CDATA[<p>Andy, </p>
<p>Great work that you&#8217;ve done with this very useful REST client class!<br />
I&#8217;ve been able to quickly put up a simple XML based GET request with this class. </p>
<p>My main comment (minor) is how the port number (as well as credentials) could be easily set through the URI/URL given in constructor or when setting the url. One should not be the need  to explicitly set the port argument in such case. For example:</p>
<p>RESTService service = new RESTService(&#8220;http://localhost:8080/app/rest/get&#8221;)</p>
<p>as opposed to:</p>
<p>RESTService service = new RESTService(&#8220;http://localhost:8080/app/rest/get&#8221;, 8080)</p>
<p>Great stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Johnston</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-573</link>
		<dc:creator>Barry Johnston</dc:creator>
		<pubDate>Fri, 11 Sep 2009 15:35:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-573</guid>
		<description>UPDATE: I managed to get my project working.  The RESTService does support HTTPS.  I just had an issue with my certificate.
Great library, for what is&#039; worth, I highly recommend it.</description>
		<content:encoded><![CDATA[<p>UPDATE: I managed to get my project working.  The RESTService does support HTTPS.  I just had an issue with my certificate.<br />
Great library, for what is&#8217; worth, I highly recommend it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Johnston</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-572</link>
		<dc:creator>Barry Johnston</dc:creator>
		<pubDate>Fri, 11 Sep 2009 13:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-572</guid>
		<description>I&#039;ve read in a few places where https is not possible through the web using RESTService.  However, the posts seem to be dated.  I&#039;m wondering if this is indeed true?  If it was true but someone has found a solution, does anyone have information about the solution?
Thanks,
Barry</description>
		<content:encoded><![CDATA[<p>I&#8217;ve read in a few places where https is not possible through the web using RESTService.  However, the posts seem to be dated.  I&#8217;m wondering if this is indeed true?  If it was true but someone has found a solution, does anyone have information about the solution?<br />
Thanks,<br />
Barry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jens</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-571</link>
		<dc:creator>Jens</dc:creator>
		<pubDate>Thu, 04 Dec 2008 14:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-571</guid>
		<description>First of all I like your RESTService implementation very much, because it keeps the HTTPService feeling and adds the missing REST.
But I think something is wrong with the implementation of multipart/form-data. In the for-loop where the content of the multipart-Request is built
data.writeUTFBytes(&quot;--&quot; + boundary + &quot;--&quot; + SEPARATOR)
should be outside of the loop otherwhise it is added after any form-item which results in double boundaries. Unfortunately I still cannot get it to work.
Could you perhaps try to make a multipart/form-data request with RESTService and post a working example?
Thanks a lot!
Jens</description>
		<content:encoded><![CDATA[<p>First of all I like your RESTService implementation very much, because it keeps the HTTPService feeling and adds the missing REST.<br />
But I think something is wrong with the implementation of multipart/form-data. In the for-loop where the content of the multipart-Request is built<br />
data.writeUTFBytes(&#8220;&#8211;&#8221; + boundary + &#8220;&#8211;&#8221; + SEPARATOR)<br />
should be outside of the loop otherwhise it is added after any form-item which results in double boundaries. Unfortunately I still cannot get it to work.<br />
Could you perhaps try to make a multipart/form-data request with RESTService and post a working example?<br />
Thanks a lot!<br />
Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Lewisohn</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-570</link>
		<dc:creator>Andy Lewisohn</dc:creator>
		<pubDate>Fri, 11 Jul 2008 18:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-570</guid>
		<description>Unfortunately, the limitations of Flex would prevent you from using FileReference with RESTService. FileReference handles data in its own way, in a black box. You could use RESTService to load a file as binary, or send a file using multipart form data.</description>
		<content:encoded><![CDATA[<p>Unfortunately, the limitations of Flex would prevent you from using FileReference with RESTService. FileReference handles data in its own way, in a black box. You could use RESTService to load a file as binary, or send a file using multipart form data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://blog.arc90.com/2008/04/02/start-resting-on-your-laurels/#comment-569</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Fri, 04 Apr 2008 16:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.daniell.acr90-dev-02/2008/04/02/start-resting-on-your-laurels/#comment-569</guid>
		<description>Looks great and works!
How would you implement upload? I mean i can&#039;t see how i could use FileReference and arc90restlib together.
Phil</description>
		<content:encoded><![CDATA[<p>Looks great and works!<br />
How would you implement upload? I mean i can&#8217;t see how i could use FileReference and arc90restlib together.<br />
Phil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
