<?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: IE7 adds native XMLHTTPRequest object</title>
	<atom:link href="http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/</link>
	<description>Louisville-based Web Development &#038; Software Engineering</description>
	<lastBuildDate>Thu, 13 May 2010 10:34:28 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gustave</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-11450</link>
		<dc:creator>Gustave</dc:creator>
		<pubDate>Tue, 13 Feb 2007 08:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-11450</guid>
		<description>I don&#039;t really understand what i have to change in the livesearch code to get it working in IE7. Can you give me an example?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t really understand what i have to change in the livesearch code to get it working in IE7. Can you give me an example?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cbmeeks</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-9244</link>
		<dc:creator>cbmeeks</dc:creator>
		<pubDate>Wed, 10 Jan 2007 14:01:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-9244</guid>
		<description>It seems like IE7 has &quot;fixed&quot; problems that should make them more compliant to standards.  But these fixes are breaking old &quot;hacks&quot; and work-arounds that are everywhere.

It&#039;s good that IE7 is more standard-based but something has to give.

http://www.codershangout.com</description>
		<content:encoded><![CDATA[<p>It seems like IE7 has &#8220;fixed&#8221; problems that should make them more compliant to standards.  But these fixes are breaking old &#8220;hacks&#8221; and work-arounds that are everywhere.</p>
<p>It&#8217;s good that IE7 is more standard-based but something has to give.</p>
<p><a href="http://www.codershangout.com" rel="nofollow">http://www.codershangout.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Smith</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-8274</link>
		<dc:creator>Nick Smith</dc:creator>
		<pubDate>Fri, 29 Dec 2006 17:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-8274</guid>
		<description>Many thanks for this page - it helped me make a simple fix to the Bitflux livesearch code so that it now works on IE7 :)</description>
		<content:encoded><![CDATA[<p>Many thanks for this page &#8211; it helped me make a simple fix to the Bitflux livesearch code so that it now works on IE7 :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-1424</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 27 Oct 2006 15:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-1424</guid>
		<description>Maybe I understand this better now:  The ajax code checks for IE, if so it uses Microsoft.XMLHttp object EVEN though IE7 now comes with XmlHttpRequest.  Can we force IE7 to respond to the Microsoft.XMLHttp object?</description>
		<content:encoded><![CDATA[<p>Maybe I understand this better now:  The ajax code checks for IE, if so it uses Microsoft.XMLHttp object EVEN though IE7 now comes with XmlHttpRequest.  Can we force IE7 to respond to the Microsoft.XMLHttp object?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-1419</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 27 Oct 2006 09:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-1419</guid>
		<description>I have the same problem in IE7. All the other browsers support multiple requests.
Any solution?</description>
		<content:encoded><![CDATA[<p>I have the same problem in IE7. All the other browsers support multiple requests.<br />
Any solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steveny</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-1413</link>
		<dc:creator>steveny</dc:creator>
		<pubDate>Thu, 26 Oct 2006 21:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-1413</guid>
		<description>Pre IE7 you would instantiate the object differently than you would in Firefox, Safari, Opera, etc...

For IE (pre 7) you would either use:
new ActiveXObject(&#039;Msxml2.XMLHTTP&#039;) or new ActiveXObject(&#039;Microsoft.XMLHTTP&#039;)

In IE 7 and other browsers you would use:
new XMLHttpRequest()</description>
		<content:encoded><![CDATA[<p>Pre IE7 you would instantiate the object differently than you would in Firefox, Safari, Opera, etc&#8230;</p>
<p>For IE (pre 7) you would either use:<br />
new ActiveXObject(&#8217;Msxml2.XMLHTTP&#8217;) or new ActiveXObject(&#8217;Microsoft.XMLHTTP&#8217;)</p>
<p>In IE 7 and other browsers you would use:<br />
new XMLHttpRequest()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.missiondata.com/blog/web-development/64/ie7-adds-native-xmlhttprequest-object/comment-page-1/#comment-1411</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 26 Oct 2006 19:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=64#comment-1411</guid>
		<description>Your saying IE7 doesn&#039;t reuse XmlHttpRequest object like the rest of the web browsers?</description>
		<content:encoded><![CDATA[<p>Your saying IE7 doesn&#8217;t reuse XmlHttpRequest object like the rest of the web browsers?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
