<?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 DBJ.ORG</title>
	<atom:link href="http://dbj.org/dbj/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://dbj.org/dbj</link>
	<description>Feasibly Disruptive &#8482;</description>
	<lastBuildDate>Tue, 08 May 2012 10:11:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Chrome OS on a Samsung Galaxy ? by Dusan</title>
		<link>http://dbj.org/dbj/?p=1087&#038;cpage=1#comment-1848</link>
		<dc:creator>Dusan</dc:creator>
		<pubDate>Tue, 08 May 2012 10:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://dbj.org/dbj/?p=1087#comment-1848</guid>
		<description>@Jay

GOOG will not buy any new OS that much is for sure. GOOG have invested a lot in Chrome OS, GO prog. env. etc. Recently it was somewhat moot point where they will use this first. I think they can use, at least, the GO RT and dev env, to make Java less prominent on the Android. And especially to avoid further attacks from Oracle.</description>
		<content:encoded><![CDATA[<p>@Jay</p>
<p>GOOG will not buy any new OS that much is for sure. GOOG have invested a lot in Chrome OS, GO prog. env. etc. Recently it was somewhat moot point where they will use this first. I think they can use, at least, the GO RT and dev env, to make Java less prominent on the Android. And especially to avoid further attacks from Oracle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome OS on a Samsung Galaxy ? by Jay</title>
		<link>http://dbj.org/dbj/?p=1087&#038;cpage=1#comment-1844</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Mon, 07 May 2012 10:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://dbj.org/dbj/?p=1087#comment-1844</guid>
		<description>What makes you think that they will come up with Chrome OS for android.

Wouldnt they choose some other open source mobile OS?
B2G
Tizen

are already gearing up for the competition.</description>
		<content:encoded><![CDATA[<p>What makes you think that they will come up with Chrome OS for android.</p>
<p>Wouldnt they choose some other open source mobile OS?<br />
B2G<br />
Tizen</p>
<p>are already gearing up for the competition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enterprise Architect vs Solution Architect by Difference between IT architect roles &#124; - danovich.com.au -</title>
		<link>http://dbj.org/dbj/?p=227&#038;cpage=1#comment-1773</link>
		<dc:creator>Difference between IT architect roles &#124; - danovich.com.au -</dc:creator>
		<pubDate>Fri, 23 Mar 2012 20:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://dbj.org/dbj/?p=227#comment-1773</guid>
		<description>[...] http://dbj.org/dbj/?p=227 [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://dbj.org/dbj/?p=227" rel="nofollow">http://dbj.org/dbj/?p=227</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE + XMLHttpRequest problem and solution by Dusan</title>
		<link>http://dbj.org/dbj/?p=303&#038;cpage=1#comment-1770</link>
		<dc:creator>Dusan</dc:creator>
		<pubDate>Thu, 22 Mar 2012 08:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://dbj.org/dbj/?p=303#comment-1770</guid>
		<description>@kunal
Er ... sorry is Your comment for this or some other article ?
Beyond that, the world is using jQuery, last few years or so, for these kind of issues :)</description>
		<content:encoded><![CDATA[<p>@kunal<br />
Er &#8230; sorry is Your comment for this or some other article ?<br />
Beyond that, the world is using jQuery, last few years or so, for these kind of issues <img src='http://dbj.org/dbj/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE + XMLHttpRequest problem and solution by kunal</title>
		<link>http://dbj.org/dbj/?p=303&#038;cpage=1#comment-1769</link>
		<dc:creator>kunal</dc:creator>
		<pubDate>Thu, 22 Mar 2012 06:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://dbj.org/dbj/?p=303#comment-1769</guid>
		<description>browser do have cashing enable so it displays the old output if it gets same query string parameter. so solution for the problem is to try to send request with different query string parameter value each time..... below is the sample example
[sourcecode lang=&quot;js&quot;]
function FetchDGContents(SortField,SortType,hlp)
{
	//var selecteditem = document.Form1.ddlcity.value;
	//Starts displaying the Process Image table
	//imgtbl.style.visibility = &#039;visible&#039;;

    var vReqid=Math.random() * 1000;
    var requestUrl = &quot;/WebPF/HELP/Help.aspx?req=&quot;+(vReqid)+&quot;&amp;searchstr=&quot;+SortField+&quot;&amp;hlp=&quot;+SortType+&quot;&amp;fldname=&quot;+hlp;
    /// 
	CreateXmlReq();
	
    if(XmlReq)
	{
        XmlReq.abort();
	    XmlReq.open(&quot;GET&quot;, requestUrl,  false);
	    XmlReq.send(null);
	    XmlReq.onreadystatechange = HandleResponse;
	}
}
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>browser do have cashing enable so it displays the old output if it gets same query string parameter. so solution for the problem is to try to send request with different query string parameter value each time&#8230;.. below is the sample example</p>
<pre class="brush: jscript; title: ; notranslate">
function FetchDGContents(SortField,SortType,hlp)
{
	//var selecteditem = document.Form1.ddlcity.value;
	//Starts displaying the Process Image table
	//imgtbl.style.visibility = 'visible';

    var vReqid=Math.random() * 1000;
    var requestUrl = &quot;/WebPF/HELP/Help.aspx?req=&quot;+(vReqid)+&quot;&amp;amp;searchstr=&quot;+SortField+&quot;&amp;amp;hlp=&quot;+SortType+&quot;&amp;amp;fldname=&quot;+hlp;
    ///
	CreateXmlReq();

    if(XmlReq)
	{
        XmlReq.abort();
	    XmlReq.open(&quot;GET&quot;, requestUrl,  false);
	    XmlReq.send(null);
	    XmlReq.onreadystatechange = HandleResponse;
	}
}
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

