<?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: Showing server problems in an Ajax application</title>
	<atom:link href="http://almaer.com/blog/showing-server-problems-in-an-ajax-application/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application</link>
	<description>blogging about life, the universe, and everything tech</description>
	<lastBuildDate>Sat, 08 Sep 2012 07:06:53 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: replicahandbags</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-38641</link>
		<dc:creator>replicahandbags</dc:creator>
		<pubDate>Mon, 19 May 2008 08:32:45 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-38641</guid>
		<description>thanks for sharing</description>
		<content:encoded><![CDATA[<p>thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amy</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-36501</link>
		<dc:creator>amy</dc:creator>
		<pubDate>Thu, 22 Mar 2007 12:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-36501</guid>
		<description>
Kincafe much like geni

It was a great experience for me to have something like geni. I found it extremely useful for making a family tree.

But i would like to add something which is much like a geni, its Kincafe.

I would like you to particpate in beta release of Kincafe and provide feedback at andy@kincafe.com

Thanks

amy
</description>
		<content:encoded><![CDATA[<p>Kincafe much like geni</p>
<p>It was a great experience for me to have something like geni. I found it extremely useful for making a family tree.</p>
<p>But i would like to add something which is much like a geni, its Kincafe.</p>
<p>I would like you to particpate in beta release of Kincafe and provide feedback at <a href="mailto:andy@kincafe.com">andy@kincafe.com</a></p>
<p>Thanks</p>
<p>amy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Geer</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-36500</link>
		<dc:creator>Tom Geer</dc:creator>
		<pubDate>Sat, 27 Jan 2007 17:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-36500</guid>
		<description>Very tricky to monitor sometimes.  We&#039;ve gotten into the habit of parsing Apache logs on a daily basis to produce stats about URLs with slow requests, time periods when they were slow, etc.
</description>
		<content:encoded><![CDATA[<p>Very tricky to monitor sometimes.  We&#8217;ve gotten into the habit of parsing Apache logs on a daily basis to produce stats about URLs with slow requests, time periods when they were slow, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noah</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-36499</link>
		<dc:creator>noah</dc:creator>
		<pubDate>Wed, 24 Jan 2007 16:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-36499</guid>
		<description>You have to give the user feedback. To me, this is a akin to executing time intensive tasks on the Swing drawing thread.  You app may be doing just what it&#039;s supposed to, but to the user it looks like it&#039;s locked up because the window doesn&#039;t get redrawn.  You need some sort of progress indicator (and to not lock up the UI) so the user knows what&#039;s going on.
</description>
		<content:encoded><![CDATA[<p>You have to give the user feedback. To me, this is a akin to executing time intensive tasks on the Swing drawing thread.  You app may be doing just what it&#8217;s supposed to, but to the user it looks like it&#8217;s locked up because the window doesn&#8217;t get redrawn.  You need some sort of progress indicator (and to not lock up the UI) so the user knows what&#8217;s going on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Moore</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-36498</link>
		<dc:creator>Dan Moore</dc:creator>
		<pubDate>Wed, 24 Jan 2007 16:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-36498</guid>
		<description>Hi Dion,

Interesting definition of a problem.  What do you think is the answer?  Since you&#039;re probably using nonblocking asynchronous requests, it gets a wee bit complicated to know when the server isn&#039;t responding in due time.  You could set up a timer and then have it check a variable repeatedly and after a configurable timeout alert the user...  Any frameworks/pointers/best practices to point to?  (A quick google didn&#039;t turn up much, just http://howardfamily.id.au/2006/08/16/ajax-error-handling/ and http://alistapart.com/articles/userproofingajax .)
</description>
		<content:encoded><![CDATA[<p>Hi Dion,</p>
<p>Interesting definition of a problem.  What do you think is the answer?  Since you&#8217;re probably using nonblocking asynchronous requests, it gets a wee bit complicated to know when the server isn&#8217;t responding in due time.  You could set up a timer and then have it check a variable repeatedly and after a configurable timeout alert the user&#8230;  Any frameworks/pointers/best practices to point to?  (A quick google didn&#8217;t turn up much, just <a href="http://howardfamily.id.au/2006/08/16/ajax-error-handling/" rel="nofollow">http://howardfamily.id.au/2006/08/16/ajax-error-handling/</a> and <a href="http://alistapart.com/articles/userproofingajax" rel="nofollow">http://alistapart.com/articles/userproofingajax</a> .)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony Eden</title>
		<link>http://almaer.com/blog/showing-server-problems-in-an-ajax-application/comment-page-1#comment-36497</link>
		<dc:creator>Anthony Eden</dc:creator>
		<pubDate>Wed, 24 Jan 2007 16:20:44 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/showing-server-problems-in-an-ajax-application#comment-36497</guid>
		<description>Neat site, Dion. I set up a tree with my immediate family and it was easy and fun, which is a good combination. Throw in the wicked-simple viral system and it looks like the site developers have a potential hit. Are you involved in any way?
</description>
		<content:encoded><![CDATA[<p>Neat site, Dion. I set up a tree with my immediate family and it was easy and fun, which is a good combination. Throw in the wicked-simple viral system and it looks like the site developers have a potential hit. Are you involved in any way?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
