<?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 Timewasted</title>
	<atom:link href="http://timewasted.net/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://timewasted.net</link>
	<description>A journal of technology, beer, reviews, and life.</description>
	<lastBuildDate>Mon, 31 Oct 2011 17:03:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Calling a REST web service from Android by Mark Freeman</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-133</link>
		<dc:creator>Mark Freeman</dc:creator>
		<pubDate>Mon, 31 Oct 2011 17:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-133</guid>
		<description><![CDATA[&lt;a href=&quot;#comment-127&quot; rel=&quot;nofollow&quot;&gt;@HK &lt;/a&gt; I think this would really depend on the use case for your app.  In my production app, I have all request coming from a single class, but they are triggered from various activities and typically make calls where a very limited amount of data is returned.  This is really the chatty vs chunky debate, but it really boils down to a design preference.]]></description>
		<content:encoded><![CDATA[<p><a href="#comment-127" rel="nofollow">@HK </a> I think this would really depend on the use case for your app.  In my production app, I have all request coming from a single class, but they are triggered from various activities and typically make calls where a very limited amount of data is returned.  This is really the chatty vs chunky debate, but it really boils down to a design preference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by Mark Freeman</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-132</link>
		<dc:creator>Mark Freeman</dc:creator>
		<pubDate>Mon, 31 Oct 2011 17:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-132</guid>
		<description><![CDATA[@Jouva, you are correct in many ways.  While I don&#039;t agree that the code should always be outside of the activity class, it should be contained within separate thread.  This example doesn&#039;t quite go far enough to explain the situation, however is rather intended to give a small and easy to read example of how to make the request itself.   

In my live app, I actually launch a thread to make the web service calls and show a progress dialog to the user.  In my particular use case, I do not want to allow the user to interact with the screen while the service is running.]]></description>
		<content:encoded><![CDATA[<p>@Jouva, you are correct in many ways.  While I don&#8217;t agree that the code should always be outside of the activity class, it should be contained within separate thread.  This example doesn&#8217;t quite go far enough to explain the situation, however is rather intended to give a small and easy to read example of how to make the request itself.   </p>
<p>In my live app, I actually launch a thread to make the web service calls and show a progress dialog to the user.  In my particular use case, I do not want to allow the user to interact with the screen while the service is running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Book Review: Learning Java for Android Development by jone</title>
		<link>http://timewasted.net/?p=190&#038;cpage=1#comment-130</link>
		<dc:creator>jone</dc:creator>
		<pubDate>Fri, 14 Oct 2011 06:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=190#comment-130</guid>
		<description><![CDATA[good book]]></description>
		<content:encoded><![CDATA[<p>good book</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by HK</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-127</link>
		<dc:creator>HK</dc:creator>
		<pubDate>Mon, 26 Sep 2011 09:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-127</guid>
		<description><![CDATA[Hi, I have a question. 
I have many REST requests [around 20] to be used in my app. I have watched the valuable session in Google I/O mentioned above. My question is, which is the better approach. To have single service handling all the requests in single service? or to have a dedicated service for each of the requests?
I have some of the requests that should be fired sequentially and some of them can be fired simultaneously.
Any suggestions ?]]></description>
		<content:encoded><![CDATA[<p>Hi, I have a question.<br />
I have many REST requests [around 20] to be used in my app. I have watched the valuable session in Google I/O mentioned above. My question is, which is the better approach. To have single service handling all the requests in single service? or to have a dedicated service for each of the requests?<br />
I have some of the requests that should be fired sequentially and some of them can be fired simultaneously.<br />
Any suggestions ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by Jouva</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-120</link>
		<dc:creator>Jouva</dc:creator>
		<pubDate>Tue, 09 Aug 2011 00:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-120</guid>
		<description><![CDATA[NOOOOOOOOO! NO NO NO NO NO! DO NOT USE THIS EXAMPLE VERBATIM!!!

Some of the code here might be useful for understanding how to make the HTTP request and parse the results but DO NOT do it like this! NEVER put ANY code that relies on slow components (network, database, file reading, etc) inside of your Activity thread! THIS is what causes &quot;Application Not Responding&quot; nearly all of the time. AND if your application dies (e.g. you got a call), you will not be able to always leave off from where your app was.

Google had a decent discussion at I/O about ideas of how to do proper REST stuff with Android (no code though) http://www.youtube.com/watch?v=xHXn3Kg2IQE]]></description>
		<content:encoded><![CDATA[<p>NOOOOOOOOO! NO NO NO NO NO! DO NOT USE THIS EXAMPLE VERBATIM!!!</p>
<p>Some of the code here might be useful for understanding how to make the HTTP request and parse the results but DO NOT do it like this! NEVER put ANY code that relies on slow components (network, database, file reading, etc) inside of your Activity thread! THIS is what causes &#8220;Application Not Responding&#8221; nearly all of the time. AND if your application dies (e.g. you got a call), you will not be able to always leave off from where your app was.</p>
<p>Google had a decent discussion at I/O about ideas of how to do proper REST stuff with Android (no code though) <a href="http://www.youtube.com/watch?v=xHXn3Kg2IQE" rel="nofollow">http://www.youtube.com/watch?v=xHXn3Kg2IQE</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by Connecting Android to .Net Web Services &#171; billiejowood</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-119</link>
		<dc:creator>Connecting Android to .Net Web Services &#171; billiejowood</dc:creator>
		<pubDate>Wed, 20 Jul 2011 04:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-119</guid>
		<description><![CDATA[[...] found this resource online http://timewasted.net/?p=127. I think it may be exactly what I&#8217;m looking for, but I&#8217;ll have to check it out via my [...]]]></description>
		<content:encoded><![CDATA[<p>[...] found this resource online <a href="http://timewasted.net/?p=127" rel="nofollow">http://timewasted.net/?p=127</a>. I think it may be exactly what I&#8217;m looking for, but I&#8217;ll have to check it out via my [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Volunteering on open source projects, lessons learned. by spaetz</title>
		<link>http://timewasted.net/?p=149&#038;cpage=1#comment-118</link>
		<dc:creator>spaetz</dc:creator>
		<pubDate>Tue, 12 Jul 2011 13:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=149#comment-118</guid>
		<description><![CDATA[I just discovered evennia, and I have to say it&#039;s architecture is looking beautifully. Do check out the tutorial game that is part of the contrib folder now, and which actually makes for a playable game. I agree, we&#039;ll probably need many more standard classes for weapons and other nice stuff. But it actually looks really good to me.]]></description>
		<content:encoded><![CDATA[<p>I just discovered evennia, and I have to say it&#8217;s architecture is looking beautifully. Do check out the tutorial game that is part of the contrib folder now, and which actually makes for a playable game. I agree, we&#8217;ll probably need many more standard classes for weapons and other nice stuff. But it actually looks really good to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Application Development &#8211; a review by Android</title>
		<link>http://timewasted.net/?p=123&#038;cpage=1#comment-116</link>
		<dc:creator>Android</dc:creator>
		<pubDate>Mon, 04 Jul 2011 06:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=123#comment-116</guid>
		<description><![CDATA[The explanations of each section were great.]]></description>
		<content:encoded><![CDATA[<p>The explanations of each section were great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by Sujata</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-114</link>
		<dc:creator>Sujata</dc:creator>
		<pubDate>Thu, 23 Jun 2011 15:14:12 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-114</guid>
		<description><![CDATA[I have a REST library called resting (http://code.google.com/p/resting)which can be used to invoke HTTP and HTTPS REST services with parameters and get the list of objects from HTTP response in a single step. Please take a look]]></description>
		<content:encoded><![CDATA[<p>I have a REST library called resting (<a href="http://code.google.com/p/resting" rel="nofollow">http://code.google.com/p/resting</a>)which can be used to invoke HTTP and HTTPS REST services with parameters and get the list of objects from HTTP response in a single step. Please take a look</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a REST web service from Android by Sean</title>
		<link>http://timewasted.net/?p=127&#038;cpage=1#comment-113</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 06 May 2011 15:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://breaking-catch22.com/?p=127#comment-113</guid>
		<description><![CDATA[I am new to Android. Sorry about the question. I have created an application and it is using the SAXparser to retrieve the xml infromation from the Resfull web service. I am not using any HTTPclient. I have tested on the local network and it is working fine. Why do I need the HTTPclient? Thanks.]]></description>
		<content:encoded><![CDATA[<p>I am new to Android. Sorry about the question. I have created an application and it is using the SAXparser to retrieve the xml infromation from the Resfull web service. I am not using any HTTPclient. I have tested on the local network and it is working fine. Why do I need the HTTPclient? Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
