<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RestSharp &#187; Announcements</title>
	<atom:link href="http://restsharp.org/index.php/category/announcements/feed/" rel="self" type="application/rss+xml" />
	<link>http://restsharp.org</link>
	<description></description>
	<lastBuildDate>Thu, 15 Jul 2010 20:47:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Silverlight and Windows Phone 7 Now Supported</title>
		<link>http://restsharp.org/silverlight-and-windows-phone-7-now-supported/</link>
		<comments>http://restsharp.org/silverlight-and-windows-phone-7-now-supported/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 20:47:10 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Samples]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://restsharp.org/silverlight-and-windows-phone-7-now-supported/</guid>
		<description><![CDATA[I&#8217;ve added support for Silverlight 4 and Windows Phone 7 to RestSharp. Please try it out and report back any errors or other feedback you have. You can download the latest revision here. Here&#8217;s an example: var client = new RestClient(&#34;http://example.com&#34;); var request = new RestRequest(&#34;resource&#34;, Method.POST); client.ExecuteAsync&#60;Resource&#62;(request, (response) =&#62; { var resource = response.Data; [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added support for Silverlight 4 and Windows Phone 7 to RestSharp. Please try it out and report back any errors or other feedback you have. You can <a href="http://github.com/johnsheehan/RestSharp/archives/master">download the latest revision here</a>.</p>
<p>Here&#8217;s an example:</p>
<pre>var client = new RestClient(&quot;http://example.com&quot;);
var request = new RestRequest(&quot;resource&quot;, Method.POST);

client.ExecuteAsync&lt;Resource&gt;(request, (response) =&gt; {
    var resource = response.Data;
});</pre>
<p>As a side note, the core library is also now set to use the Client Profile by default. The Async methods from Silverlight/WP7 are also available in the core library as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/silverlight-and-windows-phone-7-now-supported/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The State of RestSharp as of June 2010</title>
		<link>http://restsharp.org/the-state-of-restsharp-as-of-june-2010/</link>
		<comments>http://restsharp.org/the-state-of-restsharp-as-of-june-2010/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 07:09:11 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/the-state-of-restsharp-as-of-june-2010/</guid>
		<description><![CDATA[On Releases I know it&#8217;s very cliché of .NET open source projects to be perpetually unreleased but I&#8217;ve sort of come to like not having a release. In the current state of the project, there&#8217;s a minimum level of involvement in order to use RestSharp. Having a slightly higher bar for using it tends to [...]]]></description>
			<content:encoded><![CDATA[<h3>On Releases</h3>
<p>I know it&#8217;s very cliché of .NET open source projects to be perpetually unreleased but I&#8217;ve sort of come to <em>like</em> not having a release. In the current state of the project, there&#8217;s a minimum level of involvement in order to use RestSharp. Having a slightly higher bar for using it tends to limit use to 1) people that know how to report bugs 2) people more willing to contribute back and 3) people less likely to need a lot of help. These three things really make it a low-maintenance project, which is nice because sometimes I&#8217;m pretty busy.</p>
<p>I previously wanted to release fast and furious with quick updates after 1.0. Now, I&#8217;m taking my time to get 1.0 rounded out better. I&#8217;ve reprioritized oAuth (in progress), Silverlight (mostly done) and Windows Phone 7 support (not started) for 1.0.</p>
<p>However, you may not have to wait too much longer because of some things I can&#8217;t yet discuss that are giving me some more time to work on RestSharp. Stay tuned.</p>
<p><strong>On Documentation</strong></p>
<p>If you&#8217;ve previously checked out RestSharp then written it off because you couldn&#8217;t figure it out and there were no docs, I&#8217;ve <a href="http://wiki.github.com/johnsheehan/RestSharp/">written a lot of documentation since then</a>. If you have a chance, read through it and let me know what&#8217;s missing.</p>
<p><strong>On &quot;Competition&quot;</strong></p>
<p>There are some other .NET REST Clients that have either recently launched or are somewhere around the corner. The most interesting development is Microsoft&#8217;s re-entry into the problem space with their upcoming REST updates to WCF being spearheaded by Glenn Block (of MEF fame). I&#8217;m honored to hear that the WCF team has evaluated RestSharp and best I can tell doesn&#8217;t hate it. I would <em><strong>love</strong> </em>for a proper REST client (or even HTTP client) to be included in the framework and eliminate the need for RestSharp. I&#8217;ll be keeping an eye out for what they develop and rest assured if it doesn&#8217;t meet my standards, RestSharp isn&#8217;t going anywhere. If it does, then I&#8217;ll re-evaluate things then. Either way, I&#8217;m glad to see increased interest in REST from MS and other developers. The more the merrier!</p>
<p><strong>On Pure REST vs. Mainstream REST</strong></p>
<p>RestSharp is very much situated in the &quot;Mainstream REST&quot; (aka Web API) category. Almost to the point where I wish I hadn&#8217;t included &#8216;REST&#8217; in the name. When I started I had no idea what a rabbit hole pure REST is. I don&#8217;t mean that in a bad way, just it&#8217;s more complicated than my original understanding. I am attempting to keep an ear to the REST purists to gain inspiration for how things should work. However, my #1 goal is to get things done and since most of the APIs I work with also fall into the mainstream REST category, that will continue to be my focus for RestSharp.</p>
<p><strong>On Community</strong></p>
<p>When I started this little project I never imagined that anyone else would like it, let alone use it, let alone contribute to it or write blog posts about it. For all of those people listed in the <a href="http://wiki.github.com/johnsheehan/RestSharp/acknowledgements">Acknowledgements</a> and <a href="http://wiki.github.com/johnsheehan/RestSharp/restsharp-blog-postslinks">blog posts list</a>, thank you for your support of RestSharp. We&#8217;re over <a href="http://github.com/johnsheehan/RestSharp">100 watchers+forks on GitHub</a> and almost <a href="http://twitter.com/RestSharp">150 followers on Twitter</a>. RestSharp was even <a href="http://github.com/blog/645-github-rebase-42">featured on the GitHub blog</a>. Your contributions have made it a better library and an even more fun project to work on! Thank you everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/the-state-of-restsharp-as-of-june-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Herding Code talks RestSharp (and more)</title>
		<link>http://restsharp.org/herding-code-talks-restsharp-and-more/</link>
		<comments>http://restsharp.org/herding-code-talks-restsharp-and-more/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 21:30:08 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/herding-code-talks-restsharp-and-more/</guid>
		<description><![CDATA[I was recently a guest on the Herding Code podcast to talk about RestSharp. The episode also covers my new job at Twilio, the .NET OSS landscape and me mentioning Bing two too many times. You can listen to the episode here.]]></description>
			<content:encoded><![CDATA[<p>I was recently a guest on the Herding Code podcast to talk about RestSharp. The episode also covers my new job at <a href="http://twilio.com" target="_blank">Twilio</a>, the .NET OSS landscape and me mentioning Bing two too many times. You can <a href="http://herdingcode.com/?p=244" target="_blank">listen to the episode here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/herding-code-talks-restsharp-and-more/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Feedback Request</title>
		<link>http://restsharp.org/feedback-request/</link>
		<comments>http://restsharp.org/feedback-request/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 04:14:56 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/feedback-request/</guid>
		<description><![CDATA[UPDATE: The change described below has been committed to the GitHub repository. While looking at the examples for a new .NET REST library that&#8217;s recently been released, one thing stuck out to me as a good idea to steal and implement in RestSharp. It has to do with what is returned from Execute methods. Which [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE: The change described below has been committed to the GitHub repository.</strong></p>
<p>While looking at the examples for a new .NET REST library that&#8217;s recently been released, one thing stuck out to me as a good idea to steal and implement in RestSharp. It has to do with what is returned from Execute methods.</p>
<p>Which do you prefer:</p>
<h3>1. The Status Quo</h3>
<pre>RestClient client = new RestClient();
RestResponse response = client.Execute(request);
var statusCode = response.StatusCode;

Product product = client.Execute&lt;Product&gt;(request);
var name = product.Name;</pre>
<h3>2. Always return a RestResponse, sometimes with the entity</h3>
<pre>RestClient client = new RestClient();
RestResponse response = client.Execute(request);
var statusCode = response.StatusCode;

RestResponse&lt;Product&gt; responseWithData = client.Execute&lt;Product&gt;(request);
var code = responseWithData.StatusCode;
var name = responseWithData.Entity.Name;</pre>
<p>I&#8217;m leaning towards #2 because it gives you access to the complete response details on every request. </p>
<p>Your thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/feedback-request/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Another breaking change an 1.0 release update</title>
		<link>http://restsharp.org/another-breaking-change-an-1-0-release-update/</link>
		<comments>http://restsharp.org/another-breaking-change-an-1-0-release-update/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:28:36 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/another-breaking-change-an-1-0-release-update/</guid>
		<description><![CDATA[Breaking Change RestRequest.ResponseFormat has been removed because it was too naive. If your requests return XML and specify an XML content type, the XML deserializer will be used and likewise for JSON. If you want to override those deserializers or need to handle a different content type, use the following methods: var client = new [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Breaking Change</strong></p>
<p>RestRequest.ResponseFormat has been removed because it was too naive. If your requests return XML and specify an XML content type, the XML deserializer will be used and likewise for JSON. If you want to override those deserializers or need to handle a different content type, use the following methods:</p>
<pre class="brush: csharp;">var client = new RestClient();

// clear default handlers
client.ClearHandlers();

// add custom handler
// second parameter is instance of IDeserializer
client.AddHandler(&quot;application/json&quot;, new FunkyDeserializer());</pre>
<p>By default the following content types are handled:</p>
<ul>
<li>application/xml </li>
<li>application/json </li>
<li>text/xml </li>
<li>text/json (please don&#8217;t use this in your apps, supporting it because it&#8217;s out there) </li>
</ul>
<p>By default if the content type returned by your request doesn&#8217;t match one of those content types the XML deserializer is used. To register a default handler use client.AddHandler(&quot;*&quot;, …); You can also remove specific handlers using client.RemoveHandler(contentType);</p>
<p><strong>1.0 Release Update</strong></p>
<p>I know I promised February 24 but a couple bugs and some good feedback items came in and I wanted to resolve them by 1.0. Now I&#8217;m going to be on vacation and at MIX so it will likely be shortly after that. Follow <a href="http://twitter.com/RestSharp">@RestSharp</a> for updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/another-breaking-change-an-1-0-release-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nearing 1.0 and an upcoming (minor) breaking change</title>
		<link>http://restsharp.org/nearing-1-0-and-an-upcoming-minor-breaking-change/</link>
		<comments>http://restsharp.org/nearing-1-0-and-an-upcoming-minor-breaking-change/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 23:07:21 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/nearing-1-0-and-an-upcoming-minor-breaking-change/</guid>
		<description><![CDATA[Progress on RestSharp has been steady lately with the addition of handling for file downloads, gzip/deflate compression handling, JSON request bodies and more. We&#8217;re down to just two outstanding issues and then I&#8217;ll be ready to christen and release RestSharp 1.0. If you have any features or bugs you want to get included in the [...]]]></description>
			<content:encoded><![CDATA[<p>Progress on RestSharp <a href="http://github.com/johnsheehan/RestSharp/commits/master" target="_blank">has been steady lately</a> with the addition of handling for file downloads, gzip/deflate compression handling, JSON request bodies and more. We&#8217;re down to just <a href="http://github.com/johnsheehan/RestSharp/issues" target="_blank">two outstanding issues</a> and then I&#8217;ll be ready to christen and release RestSharp 1.0. If you have any features or bugs you want to get included in the first official release, <a href="http://github.com/johnsheehan/RestSharp/issues" target="_blank">now is the time to report them</a>.</p>
<p>One thing I want to make note of for anyone that&#8217;s already using RS is a breaking change that will be committed soon. The &#8216;BaseUrl&#8217; property that currently resides on RestRequest will be moving to RestClient. RestClient is where you want to be handling configuration that is common amongst many requests (like authorization which is typically pretty standard across an API) and the base URL for an API rarely changes between requests. This change will be checked in tonight.</p>
<p>Once the remaining issues are taken care of and the docs are beefed up I&#8217;ll release RestSharp 1.0. My goal is to have done by February 24th but it will likely be sooner than that.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/nearing-1-0-and-an-upcoming-minor-breaking-change/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vote to see RestSharp presented at MIX10</title>
		<link>http://restsharp.org/vote-to-see-restsharp-presented-at-mix10/</link>
		<comments>http://restsharp.org/vote-to-see-restsharp-presented-at-mix10/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 16:26:18 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/vote-to-see-restsharp-presented-at-mix10/</guid>
		<description><![CDATA[I&#8217;ve submitted a session for the MIX10 open call on using REST APIs in your .NET applications. This talk will make extensive use of RestSharp. Even if you&#8217;re not going to MIX, you can still vote for the talk. It only takes 20 seconds and you don&#8217;t have to provide any personal information. You can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve <a href="http://visitmix.com/opencallvote/Entry?entryId=CANYOU031">submitted a session for the MIX10 open call</a> on using REST APIs in your .NET applications. This talk will make extensive use of RestSharp. Even if you&#8217;re not going to MIX, you can still vote for the talk. It only takes 20 seconds and you don&#8217;t have to provide any personal information. <a href="http://visitmix.com/opencallvote/Entry?entryId=CANYOU031">You can vote here</a>.</p>
<p><a href="http://visitmix.com/opencallvote/Entry?entryId=CANYOU031"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Mix10_Vote_grn_240" border="0" alt="Mix10_Vote_grn_240" src="http://restsharp.org/wp-content/uploads/Mix10_Vote_grn_240.jpg" width="244" height="324" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/vote-to-see-restsharp-presented-at-mix10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Story of RestSharp</title>
		<link>http://restsharp.org/the-story-of-restsharp/</link>
		<comments>http://restsharp.org/the-story-of-restsharp/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 05:33:12 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/the-story-of-restsharp/</guid>
		<description><![CDATA[I just posted over on my personal blog how RestSharp came to be.]]></description>
			<content:encoded><![CDATA[<p>I just posted over on my personal blog <a href="http://john-sheehan.com/blog/restsharp/">how RestSharp came to be</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/the-story-of-restsharp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First public source commit</title>
		<link>http://restsharp.org/first-public-source-commit/</link>
		<comments>http://restsharp.org/first-public-source-commit/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 06:26:46 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/first-public-source-commit/</guid>
		<description><![CDATA[The first public commit of RestSharp went up on GitHub just a few minutes ago. I&#8217;m hoping to crank out some basic docs and do a downloadable release over the next few days. Stay tuned!]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://github.com/johnsheehan/RestSharp" target="_blank">first public commit of RestSharp</a> went up on GitHub just a few minutes ago. I&#8217;m hoping to crank out some basic docs and do a downloadable release over the next few days. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/first-public-source-commit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon</title>
		<link>http://restsharp.org/coming-soon/</link>
		<comments>http://restsharp.org/coming-soon/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 23:12:05 +0000</pubDate>
		<dc:creator>John Sheehan</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://restsharp.org/?p=3</guid>
		<description><![CDATA[Follow @RestSharp for updates.]]></description>
			<content:encoded><![CDATA[<p>Follow <a href="http://twitter.com/RestSharp">@RestSharp</a> for updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://restsharp.org/coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
