<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>my2cents &#187; AJAX</title>
	<atom:link href="http://www.frightanic.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frightanic.com</link>
	<description>&#34;The Earth was made round so that we would not see too far down the road&#34; - Karen Blixen</description>
	<lastBuildDate>Sat, 04 Sep 2010 07:13:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to send a HEAD request from Firefox</title>
		<link>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/</link>
		<comments>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 00:11:51 +0000</pubDate>
		<dc:creator>frightanic</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Authoring]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.frightanic.com/?p=453</guid>
		<description><![CDATA[Use the JavaScript console in Firebug and run the following script snippet: var xmlhttp = new XMLHttpRequest(); xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions) xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4) { // make sure the request is complete alert(xmlhttp.getAllResponseHeaders()) // display the headers } } xmlhttp.send(null); // send request]]></description>
			<content:encoded><![CDATA[<p>Use the JavaScript console in Firebug and run the following script snippet:</p>
<pre class="brush: javascript;" lang="JAVASCRIPT">
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("HEAD", "the_url",true); // Async HEAD request (relative path to avoid cross-domain restrictions)
xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) { // make sure the request is complete
    alert(xmlhttp.getAllResponseHeaders()) // display the headers
  }
}
xmlhttp.send(null); // send request
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.frightanic.com/2010/02/08/how-to-send-a-head-request-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GWT with PHP back end</title>
		<link>http://www.frightanic.com/2009/12/12/gwt-with-php-back-end/</link>
		<comments>http://www.frightanic.com/2009/12/12/gwt-with-php-back-end/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 22:04:13 +0000</pubDate>
		<dc:creator>frightanic</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Web Authoring]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[GWT]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RPC]]></category>

		<guid isPermaLink="false">http://www.frightanic.com/?p=408</guid>
		<description><![CDATA[I just invested 30min to find tools/libraries which allow me to use PHP scripts instead of Java on the server when the front end is GWT. There are various potential channels through which GWT and PHP can talk to each other. GWT RPC, ideally native or over JSON/XML would certainly be the most obvious choice. [...]]]></description>
			<content:encoded><![CDATA[<p>I just invested 30min to find tools/libraries which allow me to use PHP scripts instead of Java on the server when the front end is GWT. There are various potential channels through which GWT and PHP can talk to each other. GWT RPC, ideally native or over JSON/XML would certainly be the most obvious choice.</p>
<p>My Internet search didn&#8217;t turn up a whole lot of useful stuff&#8230;</p>
<p><a href="http://code.google.com/p/gwtphp/" target="_blank">http://code.google.com/p/gwtphp/</a></p>
<p>h<a href="http://code.google.com/p/gwtamp/" target="_blank">ttp://code.google.com/p/gwtamp/</a></p>
<p style="text-align: left;"><a href="http://code.google.com/p/lacertae/" target="_blank">http://code.google.com/p/lacertae/</a></p>
<p><a href="http://download.boulder.ibm.com/ibmdl/pub/software/dw/xml/x-gwtphp/x-gwtphp-pdf.pdf">http://download.boulder.ibm.com/ibmdl/pub/software/dw/xml/x-gwtphp/x-gwtphp-pdf.pdf</a></p>
<p><a href="http://angel.hurtado.googlepages.com/tutorialgwt2" target="_blank">http://angel.hurtado.googlepages.com/tutorialgwt2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.frightanic.com/2009/12/12/gwt-with-php-back-end/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
