<?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: AJAX: Bypassing XMLHTTPRequest Cross-domain Restrictions</title>
	<atom:link href="http://www.nathanm.com/index.php/ajax-bypassing-xmlhttprequest-cross-domain-restriction/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/</link>
	<description>Programming magic, glory, and juices.</description>
	<lastBuildDate>Wed, 28 Jul 2010 13:26:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: sharad verma</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-142739</link>
		<dc:creator>sharad verma</dc:creator>
		<pubDate>Thu, 06 May 2010 04:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-142739</guid>
		<description>thanks for this...
Regards
Sharad</description>
		<content:encoded><![CDATA[<p>thanks for this&#8230;<br />
Regards<br />
Sharad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jakub</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-137869</link>
		<dc:creator>Jakub</dc:creator>
		<pubDate>Tue, 09 Feb 2010 23:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-137869</guid>
		<description>Here is a solution http://www.ajax-cross-domain.com/ . Other posibility to solve cross-domain restriction is to use Flex. I didn&#039;t try it, but it could be possibly ok.</description>
		<content:encoded><![CDATA[<p>Here is a solution <a href="http://www.ajax-cross-domain.com/" rel="nofollow">http://www.ajax-cross-domain.com/</a> . Other posibility to solve cross-domain restriction is to use Flex. I didn&#8217;t try it, but it could be possibly ok.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sudhee</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-134858</link>
		<dc:creator>Sudhee</dc:creator>
		<pubDate>Thu, 17 Dec 2009 16:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-134858</guid>
		<description>This is another resource which will be of help - http://piecesofrakesh.blogspot.com/2007/11/how-to-build-readwrite-javascript-api.html</description>
		<content:encoded><![CDATA[<p>This is another resource which will be of help &#8211; <a href="http://piecesofrakesh.blogspot.com/2007/11/how-to-build-readwrite-javascript-api.html" rel="nofollow">http://piecesofrakesh.blogspot.com/2007/11/how-to-build-readwrite-javascript-api.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sudhee</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-134857</link>
		<dc:creator>Sudhee</dc:creator>
		<pubDate>Thu, 17 Dec 2009 16:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-134857</guid>
		<description>Method 2 &amp; 3 can work if both of them read and write to window.name</description>
		<content:encoded><![CDATA[<p>Method 2 &amp; 3 can work if both of them read and write to window.name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-95232</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 24 Jan 2009 19:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-95232</guid>
		<description>Hi,

Method1: Can we have a sample code? Preferable Classic ASP+javascript

thx
Jeff</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Method1: Can we have a sample code? Preferable Classic ASP+javascript</p>
<p>thx<br />
Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Murray Todd Williams</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-90735</link>
		<dc:creator>Murray Todd Williams</dc:creator>
		<pubDate>Thu, 08 Jan 2009 19:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-90735</guid>
		<description>It looks like the one way to handle this has nothing to do with XMLHttpRequest. It&#039;s called JSONP, and it requires you adhere to some conventions on the output your server returns. The trick is not to use iframes of XMLHttpRequests but instead to use JavaScript to dynamically create a  request. You can pass data to the server via query strings parameters (a la &quot;GET&quot;) and you have the server return JSON-based data. Dojo and jQuery both implement this solution now.</description>
		<content:encoded><![CDATA[<p>It looks like the one way to handle this has nothing to do with XMLHttpRequest. It&#8217;s called JSONP, and it requires you adhere to some conventions on the output your server returns. The trick is not to use iframes of XMLHttpRequests but instead to use JavaScript to dynamically create a  request. You can pass data to the server via query strings parameters (a la &#8220;GET&#8221;) and you have the server return JSON-based data. Dojo and jQuery both implement this solution now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tunneling e proxy server per Ajax e non solo &#124; Undolog.com</title>
		<link>http://www.nathanm.com/ajax-bypassing-xmlhttprequest-cross-domain-restriction/comment-page-1/#comment-84775</link>
		<dc:creator>Tunneling e proxy server per Ajax e non solo &#124; Undolog.com</dc:creator>
		<pubDate>Fri, 10 Oct 2008 15:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.nathanm.com/2006/07/27/bypassing_xmlhttprequest_cross_domain_restriction.html#comment-84775</guid>
		<description>[...] AJAX: Bypassing XMLHTTPRequest cross-domain restrictions [...]</description>
		<content:encoded><![CDATA[<p>[...] AJAX: Bypassing XMLHTTPRequest cross-domain restrictions [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
