<?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>Suddenelfilio.net &#187; Web Services</title>
	<atom:link href="http://www.suddenelfilio.net/category/web-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.suddenelfilio.net</link>
	<description>Passionate about software development</description>
	<lastBuildDate>Mon, 19 Dec 2011 12:07:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>IIS 7.x and HttpResponse.Headers</title>
		<link>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/</link>
		<comments>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 15:40:28 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[HTTP Handlers]]></category>
		<category><![CDATA[HTTP Headers]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/</guid>
		<description><![CDATA[Today I was debugging some application I wrote that was written with an application pool’s mode set to Integrated mode in mind. One of my colleagues told me I needed to test it running in an application pool with its mode set to Classic. And guess what? Boom… it blew up in my face! After [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was debugging some application I wrote that was written with an application pool’s mode set to <strong>Integrated </strong>mode in mind. One of my colleagues told me I needed to test it running in an application pool with its mode set to <strong>Classic. </strong></p>
<p>And guess what? Boom… it blew up in my face! After cursing around a bit I discovered in my log files the following message:</p>
<blockquote><p>ERROR    An Exception was thrown:System.PlatformNotSupportedException: This operation requires IIS integrated pipeline mode.<br />
at System.Web.HttpResponse.get_Headers()</p></blockquote>
<p>The defect piece of code was this:</p>
<pre class="brush: csharp; title: ; toolbar: true; wrap-lines: true; notranslate">
HttpContext.Current.Response.Headers.Add(&quot;Some-Header&quot;,&quot;Some-Value&quot;);
</pre>
<p>Apparently to do that you need the IIS integrated pipeline mode. Well if you really need to run your app pool in Classic mode just replace your code with the following and all is well:</p>
<pre class="brush: csharp; title: ; toolbar: true; wrap-lines: true; notranslate">
HttpContext.Current.Response.AppendHeader(&quot;Some-Header&quot;,&quot;Some-Value&quot;);
</pre>
<p>I know it’s kind of silly from Microsoft to not make this both ways compatible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2011/07/15/iis-7-x-and-httpresponse-headers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some Suddenelfilio.net changes.</title>
		<link>http://www.suddenelfilio.net/2010/09/11/some-suddenelfilio-net-changes/</link>
		<comments>http://www.suddenelfilio.net/2010/09/11/some-suddenelfilio-net-changes/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 21:25:22 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Disqus]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Zendesk]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=543</guid>
		<description><![CDATA[As I mentioned earlier on this blog suddenelfilio.net now uses the Disqus Commenting &#38; Discussion system to handle comments on blogs. It is a really nice systems that integrates perfectly with WordPress on which this blog is running.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="Http://www.disqus.com"><img class="size-full wp-image-547 aligncenter" title="Http://www.disqus.com" src="http://www.suddenelfilio.net/wp-content/uploads/2010/09/dc-inline.png" alt="" width="191" height="22" /></a>As I mentioned earlier on this blog suddenelfilio.net now uses the<a href="http://disqus.com/comments/" target="_blank"> Disqus Commenting &amp; Discussion system</a> to handle comments on blogs. It is a really nice systems that integrates perfectly with WordPress on which this blog is running.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/09/11/some-suddenelfilio-net-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinkedIn OAuth using Hammock in C# &amp; ASP.NET</title>
		<link>http://www.suddenelfilio.net/2010/08/24/linkedin-oauth-using-hammock-in-csharp-asp-net/</link>
		<comments>http://www.suddenelfilio.net/2010/08/24/linkedin-oauth-using-hammock-in-csharp-asp-net/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 10:54:08 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[hammock]]></category>
		<category><![CDATA[Linkedin]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[visual studio .net]]></category>
		<category><![CDATA[visual studio .net 2010]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/2010/08/24/linkedin-oauth-using-hammock/</guid>
		<description><![CDATA[UPDATE: Hammock moved to github https://github.com/danielcrenna/hammock &#160; Codeplex.com description of Hammock: Hammock is a REST library for .NET that greatly simplifies consuming and wrapping RESTful services. I’m currently working on a little web project that needed integration with LinkedIn.com. The LinkedIn API allows for OAuth authorization and authentication. They describe the process of getting a [...]]]></description>
			<content:encoded><![CDATA[<h2><b>UPDATE: Hammock moved to github https://github.com/danielcrenna/hammock</b></h2>
<blockquote><p><a href="http://hammock.codeplex.com"><img class="size-full wp-image-433 alignleft" style="margin-left: 10px; margin-right: 10px;" title="hammock" src="http://www.suddenelfilio.net/wp-content/uploads/2010/08/hammock-logo.png" alt="" width="94" height="100" /></a></p>
<p>&nbsp;</p>
<p><a href="http://hammock.codeplex.com" target="_blank">Codeplex.com</a> description of Hammock:<br />
Hammock is a REST library for .NET that greatly simplifies consuming and wrapping RESTful services.</p></blockquote>
<p><img class="size-full wp-image-435 alignright" style="margin-left: 15px; margin-right: 15px;" title="LinkedIn Logo" src="http://www.suddenelfilio.net/wp-content/uploads/2010/08/1282842190_linkedin.png" alt="" width="60" height="60" /></p>
<p>I’m currently working on a little web project that needed integration with <a href="http://www.linkedin.com" target="_blank">LinkedIn.com</a>. The <a href="http://developer.linkedin.com/docs/DOC-1008" target="_blank">LinkedIn API allows for OAuth</a> authorization and authentication. They describe the process of getting a request token, authorizing it by the user and then getting an access token. Standard <a href="http://oauth.net/" target="_blank">OAuth</a> you might say. So I needed a way to do this in C# and found the Hammock library. Although Hammock does not only do OAuth I used it for that purpose only at the moment.</p>
<p>Below is the code I wrote to get a request token and send the user to the authorization page at Linkedin:</p>
<pre class="brush: csharp; title: ; toolbar: true; wrap-lines: false; notranslate">

public void RequestAndAuthorize()
        {
            var credentials = new OAuthCredentials
            {
                CallbackUrl = &quot;http://127.0.0.1/oauth/callback/&quot;,
                ConsumerKey = ConfigurationManager.AppSettings[&quot;ConsumerKey&quot;],
                ConsumerSecret = ConfigurationManager.AppSettings[&quot;ConsumerSecret&quot;],
                Verifier = &quot;123456&quot;,
                Type = OAuthType.RequestToken
            };
            var client = new RestClient { Authority = &quot;https://api.linkedin.com/uas/oauth&quot;, Credentials = credentials };
            var request = new RestRequest { Path = &quot;requestToken&quot; };
            RestResponse response = client.Request(request);

            string token = response.Content.Split('&amp;amp;').Where(s =&amp;gt; s.StartsWith(&quot;oauth_token=&quot;)).Single().Split('=')[1];
            string token_secret = response.Content.Split('&amp;amp;').Where(s =&amp;gt; s.StartsWith(&quot;oauth_token_secret=&quot;)).Single().Split('=')[1];

            Response.Redirect(&quot;https://api.linkedin.com/uas/oauth?oauth_token=&quot; + token);
        }
</pre>
<p>Once the user has authorized your request token the LinkedIn server will redirect the user back to the callback url in this case this is http://127.0.0.1/oauth/callback. Using the returned oauth_token and oauth_token_secret (you got this one while requesting a request token) you can now get an access token so you can start making authenticated API calls from you application on behalf of the user.</p>
<p>This is the code that is used when the callback url is called:</p>
<pre class="brush: csharp; title: ; wrap-lines: false; notranslate">

	public void Callback()
        {
            var credentials = new OAuthCredentials
            {
                ConsumerKey = ConfigurationManager.AppSettings[&quot;ConsumerKey&quot;],
                ConsumerSecret = ConfigurationManager.AppSettings[&quot;ConsumerSecret&quot;],
                Token = token,
                TokenSecret = token_secret,
                Verifier = verifier,
                Type = OAuthType.AccessToken,
                ParameterHandling = OAuthParameterHandling.HttpAuthorizationHeader,
                SignatureMethod = OAuthSignatureMethod.HmacSha1,
                Version = &quot;1.0&quot;
            };
            var client = new RestClient { Authority = &quot;https://api.linkedin.com/uas/oauth&quot;, Credentials = credentials, Method = WebMethod.Post };
            var request = new RestRequest { Path = &quot;accessToken&quot; };
            RestResponse response = client.Request(request);
            string content = response.Content;
        }
</pre>
<p>As you can see Hammock is really nice and allows for easy OAuth authentication/authorization to be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/08/24/linkedin-oauth-using-hammock-in-csharp-asp-net/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>UPDATE: MS Tag REST service issues</title>
		<link>http://www.suddenelfilio.net/2010/08/03/update-ms-tag-rest-service-issues/</link>
		<comments>http://www.suddenelfilio.net/2010/08/03/update-ms-tag-rest-service-issues/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 10:47:22 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Tag]]></category>
		<category><![CDATA[MSTAGREST]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=404</guid>
		<description><![CDATA[During the last 24 hours the service has been experiencing some issues when called. This has currently been resolved. If you&#8217;ve received an http 500 error code when calling the service please try again. The issue was introduced when I extended the service to record certain metrics. These metrics or stats can be seen on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg"><img class="alignright size-full wp-image-79" title="logo_whitebackground" src="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg" alt="" width="237" height="84" /></a>During the last 24 hours the service has been experiencing some issues when called. This has currently been resolved. If you&#8217;ve received an http 500 error code when calling the service please try again. The issue was introduced when I extended the service to record certain metrics. These metrics or stats can be seen on <a href="http://tag.ws.suddenelfilio.net/">http://tag.ws.suddenelfilio.net/</a> at the end of the page.</p>
<p>If you experience any other problems please contact me at: mstaglib@suddenelfilio.net</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/08/03/update-ms-tag-rest-service-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Tag REST interface updated</title>
		<link>http://www.suddenelfilio.net/2010/07/30/ms-tag-rest-interface-updated/</link>
		<comments>http://www.suddenelfilio.net/2010/07/30/ms-tag-rest-interface-updated/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 18:25:02 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Microsoft Tag]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Web services]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=398</guid>
		<description><![CDATA[Today I&#8217;ve updated the Microsoft Tag REST interface over at http://tag.ws.suddenelfilio.net/. Since Microsoft released Tag I was a bit behind to update the interface to include the GetTagID functionality. This is now made up for and the service available for all to enjoy. I also updated the documentation on how to use the REST interface [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg"><img class="alignright size-full wp-image-79" title="logo_whitebackground" src="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg" alt="" width="237" height="84" /></a>Today I&#8217;ve updated the Microsoft Tag REST interface over at <a href="http://tag.ws.suddenelfilio.net/">http://tag.ws.suddenelfilio.net/</a>.</p>
<p>Since Microsoft released <a href="http://www.microsoft.com/tag">Tag </a>I was a bit behind to update the interface to include the GetTagID functionality. This is now made up for and the service available for all to enjoy.<br />
I also updated the documentation on how to use the REST interface to get a Tag&#8217;s id.</p>
<p>If you experience any problems please let me know using the address that you can find over at <a href="http://tag.ws.suddenelfilio.net/">http://tag.ws.suddenelfilio.net/</a> or leave a comment on this page!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/07/30/ms-tag-rest-interface-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Suddenelfilio Products &amp; Services</title>
		<link>http://www.suddenelfilio.net/2010/06/21/suddenelfilio-products-services/</link>
		<comments>http://www.suddenelfilio.net/2010/06/21/suddenelfilio-products-services/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 10:49:36 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=365</guid>
		<description><![CDATA[As of now Suddenelfilio.net is offering various products and services for those interested. Currently we offer 2 technology offers: 1. Microsoft Tag: suddenelfilio.net can help you with your Microsoft Tag needs. 2. WordPress Services: for a simple blog or wordpress as cms we can help you! Have a look at the Products &#38; Services page [...]]]></description>
			<content:encoded><![CDATA[<p>As of now Suddenelfilio.net is offering various products and services for those interested. Currently we offer 2 technology offers:</p>
<p>1. <strong>Microsoft Tag:</strong> suddenelfilio.net can help you with your Microsoft Tag needs.<br />
2. <strong>WordPress Services: </strong>for a simple blog or wordpress as cms we can help you!</p>
<p>Have a look at the <a href="http://www.suddenelfilio.net/products/">Products &amp; Services</a> page for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/06/21/suddenelfilio-products-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release of Ril#</title>
		<link>http://www.suddenelfilio.net/2010/05/12/release-of-ril/</link>
		<comments>http://www.suddenelfilio.net/2010/05/12/release-of-ril/#comments</comments>
		<pubDate>Wed, 12 May 2010 15:26:49 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[ReadItLater]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=320</guid>
		<description><![CDATA[Today I released the website for my latest personal project, a .net library for the Read It Later Service API.  Through their api you can create your own client application. Using Ril# this is now easy to do in .net. Have a look at http://rilsharp.suddenelfilio.net]]></description>
			<content:encoded><![CDATA[<p><a href="http://rilsharp.suddenelfilio.net"><img class="alignright" title="rilsharp_logo" src="http://www.suddenelfilio.net/wp-content/uploads/2010/05/rilsharp_logo.png" alt="" width="150" height="150" /></a>Today I released the website for my latest personal project, a .net library for the <a href="http://www.readitlaterlist.com">Read It Later Service</a> API.  Through their api you can create your own client application. Using Ril# this is now easy to do in .net.</p>
<p>Have a look at <a href="http://rilsharp.suddenelfilio.net ">http://rilsharp.suddenelfilio.net </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/05/12/release-of-ril/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS Tag REST Certificate Issues</title>
		<link>http://www.suddenelfilio.net/2010/04/28/ms-tag-rest-certificate-issues/</link>
		<comments>http://www.suddenelfilio.net/2010/04/28/ms-tag-rest-certificate-issues/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 10:29:35 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Tag]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=311</guid>
		<description><![CDATA[This week I received an email telling me that they got an error while using the MS Tag REST  service: System.ServiceModel.Security.SecurityNegotiationException: Could not establish trust relationship for the SSL/TLS secure channel with authority &#8216;ws.tag.microsoft.com&#8216;. As you can see the authority is complaining about the Microsoft domain. The issue was the certificate used by Microsoft&#8217;s Tag [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg"><img class="alignright size-full wp-image-79" title="logo_whitebackground" src="http://www.suddenelfilio.net/wp-content/uploads/2009/11/logo_whitebackground.jpg" alt="" width="237" height="84" /></a>This week I received an email telling me that they got an error while using the MS Tag REST  service:</p>
<blockquote><p>System.ServiceModel.Security.SecurityNegotiationException: Could not establish trust relationship for the SSL/TLS secure channel with authority &#8216;<a href="http://ws.tag.microsoft.com/">ws.tag.microsoft.com</a>&#8216;.</p></blockquote>
<p>As you can see the authority is complaining about the Microsoft domain. The issue was the certificate used by Microsoft&#8217;s Tag API was outdated and thus the error was thrown when the  REST service communicated with the Microsoft service.</p>
<p>Since the certificate has been renewed and is now valid till somewhere early 2011 this problem should be resolved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/04/28/ms-tag-rest-certificate-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Like (to) Read It Later</title>
		<link>http://www.suddenelfilio.net/2010/04/01/i-like-to-read-it-later/</link>
		<comments>http://www.suddenelfilio.net/2010/04/01/i-like-to-read-it-later/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 20:11:40 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web & Design]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[ReadItLater]]></category>
		<category><![CDATA[ReadItLater.com.bookmark]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=300</guid>
		<description><![CDATA[Today I discovered Readitlaterlist.com. This is an online service that allows you to mark pages for reading later on.If you are like me always seeing things you would really like to read but just don&#8217;t have the time at the moment you see them and then when you get round to reading them can&#8217;t remember [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.readitlaterlist.com"><img class="size-full wp-image-301 aligncenter" style="margin-top: 10px; margin-bottom: 10px;" title="Read It Later- Save Your One Read Wonders_1270151176141" src="http://www.suddenelfilio.net/wp-content/uploads/2010/04/Read-It-Later-Save-Your-One-Read-Wonders_1270151176141.png" alt="" width="316" height="68" /></a>Today I discovered <a href="http://www.readitlaterlist.com" target="_blank">Readitlaterlist.com.</a> This is an online service that allows you to mark pages for reading later on.If you are like me always seeing things you would really like to read but just don&#8217;t have the time at the moment you see them and then when you get round to reading them can&#8217;t remember what they were? Well this is the ideal solution.  You should really have a look at all the <a href="http://readitlaterlist.com/apps/" target="_blank">applications it integrates with</a>.</p>
<p>The way it works is really simple. First go to the website to create an account then you install a plugin for you browser/mobile phone and you&#8217;re set!</p>
<p>When browsing a website and you see something that you like to read later on just click the readitlater icon in the adress bar and it will be stored so you can easily find it back later on. Nice about this is that the list of things you want to read later on is available on every pc/mac/mobile that has the til plugin installed. All popular browser and mobile platforms are supported.</p>
<p>Another very nice feature is the ability to download the resource you would like to read later on so you can read it when you are offline. Like when you put various stuff in your list while working and then on the way home in the train you would like to read them. Because they were downloaded you can even if you 3G reception is bad or even worse not available.</p>
<p style="text-align: left;"><img class="size-full wp-image-302 aligncenter" style="margin-top: 10px; margin-bottom: 10px;" title="Read It Later- Save Your One Read Wonders_1270152461408" src="http://www.suddenelfilio.net/wp-content/uploads/2010/04/Read-It-Later-Save-Your-One-Read-Wonders_1270152461408.png" alt="" width="498" height="300" />A problem when you want to read a website on a mobile device might be the extensive use of images and all sorts of markup. Ril allows you to convert the resource to be stored as text so it strips out unnecessary markup and presents it in a clean format. This is very handy when catching up on your list from a mobile device.</p>
<p>On top of that they have a very nice application called <a href="http://readitlaterlist.com/digest/#features" target="_blank">Digest</a>. What Digest does is it sorts your resources into topics and presents it to you like you are reading blog or newspaper. Consider it like your own Magazine software that updates its content to the stuff you really like to read.On top of that Digest also allows you to share your content with others and access to Digest is possible from all Read It Later apps.</p>
<p>Currently you can get an early beta access to Digest  for only $5.</p>
<p>Since I&#8217;m a developer myself I also would like to make you aware of the RIL API. So if you are feeling creative give it try and build an amazing mashup or app to integrate with ReadItLater.</p>
<p>I can only say that I really like it a lot! It helps me remember all the fun stuff out there in the digital world I would like to discover.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/04/01/i-like-to-read-it-later/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Tag gets an update to their API?</title>
		<link>http://www.suddenelfilio.net/2010/03/12/microsoft-tag-gets-an-update-to-their-api/</link>
		<comments>http://www.suddenelfilio.net/2010/03/12/microsoft-tag-gets-an-update-to-their-api/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 14:55:21 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[MSTagLib]]></category>
		<category><![CDATA[Visual Studio .Net]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://www.suddenelfilio.net/?p=260</guid>
		<description><![CDATA[I&#8217;ve been reading through the MS Tag support forums over at getsatisfaction.com and noticed that it seems they&#8217;ve picked up on adding new features that have been asked as business cases as well as a possible update the TAG API to be released. Note that I have not got any comfimation on all of this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading through the MS Tag support forums over at getsatisfaction.com and noticed that it seems they&#8217;ve picked up on adding new features that have been asked as business cases as well as a possible update the TAG API to be released. Note that I have not got any comfimation on all of this but it does make me hopeful!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.suddenelfilio.net/2010/03/12/microsoft-tag-gets-an-update-to-their-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

