<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>nil desperandum - AJAX</title>
			<link>http://nil.checksite.co.uk/index.cfm</link>
			<description>ColdFusion, CFML and web development related stuff</description>
			<language>en-us</language>
			<pubDate>Thu, 02 Sep 2010 22:59:10 -0700</pubDate>
			<lastBuildDate>Sat, 13 Feb 2010 00:13:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>stephen@checksite.co.uk</managingEditor>
			<webMaster>stephen@checksite.co.uk</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>stephen@checksite.co.uk</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>AJAX Longpolling with ColdFusion and BlazeDS - Connecting and Messaging</title>
				<link>http://nil.checksite.co.uk/index.cfm/2010/2/13/CF-BlazeDS-AJAX-LongPolling-Part2</link>
				<description>
				
				In my last post on long polling I went through the basic set up of ColdFusion and BlazeDS before getting into too much code.

This part I want to get a basic connection and a couple of simple messages being sent and received.  [More]
				</description>
				
				<category>BlazeDS</category>
				
				<category>CFML</category>
				
				<category>AJAX</category>
				
				<pubDate>Sat, 13 Feb 2010 00:13:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2010/2/13/CF-BlazeDS-AJAX-LongPolling-Part2</guid>
				
				
				<enclosure url="http://nil.checksite.co.uk/enclosures/longpolling-part2.rar" length="189631" type="application/octet-stream"/>
				
			</item>
			
			<item>
				<title>AJAX Longpolling with ColdFusion and BlazeDS - Getting set up</title>
				<link>http://nil.checksite.co.uk/index.cfm/2010/1/28/CF-BlazeDS-AJAX-LongPolling-Part1</link>
				<description>
				
				I&apos;ve spent some of my week this week fighting with JavaScript, BlazeDS and ColdFusion to get a working model for some ExtJS functionality that I&apos;m currently building at work.

One of several pieces of functionality we&apos;d like is to have is real time notifications of workflow changes.  The way it was described was &quot;we want to push alerts to the users&quot;.  

I decided to have a look at how we actually addressed this &quot;problem&quot;.  
We didn&apos;t really need to &quot;push&quot; alerts to users, so the solution was traditional polling or long polling.  [More]
				</description>
				
				<category>Web Development</category>
				
				<category>BlazeDS</category>
				
				<category>CFML</category>
				
				<category>AJAX</category>
				
				<pubDate>Thu, 28 Jan 2010 21:31:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2010/1/28/CF-BlazeDS-AJAX-LongPolling-Part1</guid>
				
				
				<enclosure url="http://nil.checksite.co.uk/enclosures/longpolling-part1.rar" length="188416" type="application/octet-stream"/>
				
			</item>
			
			<item>
				<title>XML to Javascript Object</title>
				<link>http://nil.checksite.co.uk/index.cfm/2008/8/26/xml-to-javascript-object</link>
				<description>
				
				&lt;p&gt;I&apos;ve been using ColdFusion since umm...  1996?, a long time anyway, so you&apos;d think I&apos;d know everything that there is to know about CF, its tags and functions.  ;)  &lt;br /&gt;&lt;br /&gt;I jest, of course.  There is always something new to learn that&apos;s exactly what I found out the other day.&lt;br /&gt;&lt;br /&gt;I&apos;ve just written a simple AJAX widget to go on a client&apos;s site to enable them to have a simple question/action work flow on their site. You know, the &quot;Have you done this? Y/N&quot; &quot;If Yes do this, If No ask next question&quot; kind of thing. It was pretty small workflow and I was contemplating simply hardcoding the whole thing.  After a chat with a colleague to try and straighten some ideas out in my mind I decided to have an XML config file that contained the steps in the workflow.  &lt;br /&gt;&lt;br /&gt;Because the workflow is pretty simple I didn&apos;t really want to be requesting back to the server on each step, so I wanted to get my XML into javascript. Historically I&apos;ve done this using CFWDDX, but my colleague pointed me to ToScript! I love all the CF tags, but functions are so much cleaner, especially when you&apos;re somewhere in the middle of a component and ToScript is no exception.&lt;br /&gt;&lt;br /&gt;The only flaw in the plan was that ToScript takes a structure and doesn&apos;t see an XML object as a structure.  Fortunately, without too much hassle I found &lt;a href=&quot;http://www.anujgakhar.com/2007/11/05/coldfusion-xml-to-struct/&quot; target=&quot;_blank&quot;&gt;Anuj Gakhar&apos;s XMLToStruct&lt;/a&gt; function and in 4 lines of neat code I go from XML file to javascript object. probably nothing new to most of you, but its always fun to use functions you haven&apos;t used before or forgot existed.&lt;/p&gt;
&lt;p&gt;&lt;textarea cols=&quot;50&quot; rows=&quot;15&quot; name=&quot;code&quot; class=&quot;cpp:nocontrols&quot;&gt;&amp;lt;cffile action=&quot;read&quot; file=&quot;#locals.xmlPath#\my_workflow.xml&quot; variable=&quot;locals.WorkFlowXMLString&quot;&amp;gt;
&amp;lt;cfset locals.WorkFlowXML = XMLParse(locals.WorkFlowXMLString) /&amp;gt;
&amp;lt;cfset locals.stWorkFlow = ConvertXmlToStruct(locals.WorkFlowXML.xmlroot) /&amp;gt;
&amp;lt;cfset locals.jsWorkFlow = ToScript(locals.stWorkFlow,&quot;stWorkFlow&quot;) /&amp;gt;
&lt;/textarea&gt; &lt;/p&gt; 
				</description>
				
				<category>Web Development</category>
				
				<category>CFML</category>
				
				<category>AJAX</category>
				
				<pubDate>Tue, 26 Aug 2008 22:37:52 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2008/8/26/xml-to-javascript-object</guid>
				
				
			</item>
			
			<item>
				<title>Scotch on the Rocks : Early Bird coming to the end</title>
				<link>http://nil.checksite.co.uk/index.cfm/2008/4/24/scotch-on-the-rocks-early-bird-coming-to-the-end</link>
				<description>
				
				&lt;p&gt;Seven days left!&amp;nbsp; Thats all there is before the early bird discount ends.&lt;/p&gt;
&lt;p&gt;We&apos;re into April now, so your boss should be now have budgets opened
up for the new financial year.&amp;nbsp; Make him really happy by persuading him
to buy your tickets to Scotch on the Rocks (probably the best
conference you&apos;ll attend in the UK this year) NOW!&amp;nbsp; Right now!!&amp;nbsp; Before
the end of the month, while the ticket prices are still at the early
bird price.&lt;br /&gt;&lt;br /&gt;Here&apos;s what you&apos;ll be missing out on if you don&apos;t get your tickets now.&lt;/p&gt;
&lt;table border=&quot;0&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Ticket Type&lt;/th&gt;
&lt;th&gt;Before&lt;/th&gt;
&lt;th&gt;After&lt;/th&gt;
&lt;th&gt;Saving&lt;/th&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1 Day Conference Ticket&lt;/td&gt;
&lt;td&gt;&amp;pound;99 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;149 + VAT
&lt;/td&gt;
&lt;td&gt;&amp;pound;50 + VAT&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2 Day Conference Ticket&lt;/td&gt;
&lt;td&gt;&amp;pound;149 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;199 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;50 + VAT&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3 Day Conference Ticket&lt;/td&gt;
&lt;td&gt;&amp;pound;199 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;299 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;100 + VAT&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FlexiPass&lt;/td&gt;
&lt;td&gt;&amp;pound;299 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;399 + VAT&lt;/td&gt;
&lt;td&gt;&amp;pound;100 + VAT&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;br /&gt;That&apos;s right!&amp;nbsp; If you&apos;re coming to the full conference, paying
for your ticket now will save your boss (or you) &amp;pound;100! (&amp;pound;117.50 if you
can&apos;t claim the VAT back)&lt;/p&gt;
&lt;p&gt;You know you want to!&amp;nbsp; You really don&apos;t
want to miss out on a 3 day conference with a speaker list like this at
these incredible prices!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Adobe Consulting EMEA&lt;/li&gt;
&lt;li&gt;Charlie Arehart (Everyone&apos;s favourite CF expert)&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Sanjeev Kumar (From the ColdFusion Engineering team)&lt;/li&gt;
&lt;li&gt;Jason Delmore (ColdFusion Product Manager)&lt;/li&gt;
&lt;li&gt;Amir Shoval (From RADView)&lt;/li&gt;
&lt;li&gt;Nick Watson (Adobe&apos;s EuropeanTechnical Account Manager for ColdFusion, Flex and LiveCycle Data Services ES)&lt;/li&gt;
&lt;li&gt;Luca Mezzalira (Italian Flash Platform Developer)&lt;/li&gt;
&lt;li&gt;Neil Webb (Flash platform developer / flower arranger / erotic dance)&lt;/li&gt;
&lt;li&gt;Toby Tremayne (CF and Flex Developer based in Melbourne Australia)&lt;/li&gt;
&lt;li&gt;Andrew Shorten (Adobe Platform Evangalist)&lt;/li&gt;
&lt;li&gt;Adam Lehman (Adobe CF Specialist)&lt;/li&gt;
&lt;li&gt;Kai Koenig (Adobe Certified Master Instructor based in New Zealand)&lt;br /&gt;
  &lt;/li&gt;
&lt;li&gt;Ben Forta (No idea who this guy is)&lt;/li&gt;
&lt;li&gt;Peter Elst (ACE, Flash Instructor, Belgium AUG Manager)&lt;/li&gt;
&lt;li&gt;David Rutter (CTO Tag Worldwide)&lt;/li&gt;
&lt;li&gt;Duncan Jack (Openworld)&lt;/li&gt;
&lt;li&gt;Ian Bale (Celtic Internet)&lt;/li&gt;
&lt;li&gt;Simon Gladman (Development Director, Tag Worldwide)&lt;/li&gt;
&lt;li&gt;Neil Middleton (The man behind Feed-Squirrel)&lt;/li&gt;
&lt;li&gt;Gert Franz (Railo)&lt;/li&gt;
&lt;li&gt;Matt Woodward (ColdFusion Weekly Podcast)&lt;/li&gt;
&lt;li&gt;Sean Corfield &lt;br /&gt;
  &lt;/li&gt;
&lt;li&gt;Peter Bell (Application Generation)&lt;br /&gt;
  &lt;/li&gt;
&lt;li&gt;Scott Stroz (Alagad, CFSilence, CFSnippets)&lt;br /&gt;
  &lt;/li&gt;
&lt;li&gt;Joe Rhinehart (Model-Glue)&lt;br /&gt;
  &lt;/li&gt;
&lt;li&gt;Mark Drew (CFEclipse)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&apos;m absolutely sure I&apos;ve missed some! And of course there&apos;s
Jatin Nanda, Big Mad Kev, myself and, the man in the skirt, Andy Allan,
who will be working working hard to make sure that this conference is
everything you want it to be and more!&lt;/p&gt;
&lt;p&gt;Visit the &lt;a title=&quot;Scotch on the Rocks 2008&quot; href=&quot;http://www.scotch-on-the-rocks.co.uk/&quot; target=&quot;_blank&quot;&gt;website&lt;/a&gt; to find out more about the speaker, the agenda, location and to BUY YOUR TICKETS while they are still cheap as chips! ;)&lt;/p&gt; 
				</description>
				
				<category>Web Development</category>
				
				<category>Scotch on the Rocks</category>
				
				<category>Scottish ColdFusion User Group</category>
				
				<category>CFML</category>
				
				<category>Conference</category>
				
				<category>Flex</category>
				
				<category>AJAX</category>
				
				<pubDate>Thu, 24 Apr 2008 07:25:31 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2008/4/24/scotch-on-the-rocks-early-bird-coming-to-the-end</guid>
				
				
			</item>
			
			<item>
				<title>Rob Gonda on CF and AJAX Recording</title>
				<link>http://nil.checksite.co.uk/index.cfm/2006/12/8/rob-gonda-on-cf-and-ajax-recording</link>
				<description>
				
				A big thank you to Rob Gonda for last nights mammoth presentation and to everyone that attended.  It was an excellent and very enlightening presentation with loads of code examples.

If you missed out on the meeting you can watch all 2 hours and 17 minutes here : &lt;a href=&quot;http://adobechats.adobe.acrobat.com/p69276272/&quot; title=&quot;Adobe Connect : Rob Gonda on CF and AJAX&quot; target=&quot;_blank&quot;&gt;http://adobechats.adobe.acrobat.com/p69276272/&lt;/a&gt;

&lt;b&gt;UPDATE:&lt;/b&gt; Whoops - sorry forgot to get the permissions on both my presentation from last week and Rob&apos;s from last night.  You should now be able to see the presentations. 
				</description>
				
				<category>Scottish ColdFusion User Group</category>
				
				<category>CFML</category>
				
				<category>AJAX</category>
				
				<pubDate>Fri, 08 Dec 2006 17:55:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2006/12/8/rob-gonda-on-cf-and-ajax-recording</guid>
				
				
			</item>
			
			<item>
				<title>Ajax photo Album</title>
				<link>http://nil.checksite.co.uk/index.cfm/2006/5/18/ajax-photo-album</link>
				<description>
				
				I was looking for an Ajax Image zoomer, but found this instead : &lt;a href=&quot;http://piccy.dotimpac.to/&quot; target=&quot;_blank&quot;&gt;http://piccy.dotimpac.to/&lt;/a&gt; courtesy of &lt;a href=&quot;http://ajaxian.com/archives/piccy-ajax-photo-viewer&quot; target=&quot;_blank&quot;&gt;Ajaxian&lt;/a&gt;.

It uses the combination effects in &lt;a href=&quot;http://wiki.script.aculo.us/scriptaculous/show/CombinationEffectsDemo&quot; target=&quot;_blank&quot;&gt;script.aculo.us&lt;/a&gt; to good effect allowing you to pick an image and zoom in and out of that image.

Must remember to grab the files and pull it apart to find out exactly how it works. 
				</description>
				
				<category>Web Development</category>
				
				<category>AJAX</category>
				
				<pubDate>Thu, 18 May 2006 23:33:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2006/5/18/ajax-photo-album</guid>
				
				
				<enclosure url="http://nil.checksite.co.uk/enclosures/piccy.gif" length="11589" type="image/gif"/>
				
			</item>
			
			<item>
				<title>Using Fiddler with Firefox</title>
				<link>http://nil.checksite.co.uk/index.cfm/2006/4/13/using-fiddler-with-firefox</link>
				<description>
				
				Once in a while I really should read documentation - the &quot;hidden&quot; features I might find on all the applications I use.

For some reason Fiddler stopped working with Internet Explorer, so I was actually reading the few doc and faqs that are on the Fiddler website (&lt;a href=&quot;http://www.fiddlertool.com/&quot; target=&quot;_blank&quot;&gt;http://www.fiddlertool.com/&lt;/a&gt;).  

If you don&apos;t know what Fiddler is, its an HTTP Debugging proxy.  It logs all the traffic between your browser and the outside world.  Its particularly useful when you&apos;re doing Flash remoting or remoting with AJAX.

Anyway... looking at the FAQs I noticed that it is possible to use Fiddler with any browser!!  I decided to try it out with Firefox and it was really really easy to do.
&lt;ol&gt;
&lt;li&gt;Install and Run Fiddler once.  This will create some files, one of which you&apos;ll need.&lt;/li&gt;
&lt;li&gt;In &quot;My Documents&quot; you will now see that there is folder for Fiddler.  Inside there you&apos;ll find a Scripts folder. Grab a copy of the full path to this Scripts folder.  For me that would be : C:\Documents and Settings\Stephen\My Documents\Fiddler\Scripts&lt;/li&gt;
&lt;li&gt;Open up Firefox, go to Options under the Tools menu and then click on the Connection Setting button.&lt;/li&gt;
&lt;li&gt; Down the bottom of the connection settings is &quot;Automatic proxy configuration URL:&quot; Select this option and in the box put the file path to the Scripts folder followed by BrowserPAC.js which is a file in the Scripts folder. So my full path is : C:\Documents and Settings\Stephen\My Documents\Fiddler\Scripts\BrowserPAC.js&lt;/li&gt;
&lt;li&gt; Hit the Reload button, then OK, close the options window and you are set!&lt;/li&gt;
&lt;/ol&gt;
You will need Fiddler to be open in order to access the internet now, but its easy to switch between your normal settings and automatic proxy when you don&apos;t need Fiddler&apos;s assistance. 
				</description>
				
				<category>CFForm</category>
				
				<category>AJAX</category>
				
				<pubDate>Thu, 13 Apr 2006 03:07:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2006/4/13/using-fiddler-with-firefox</guid>
				
				
			</item>
			
			<item>
				<title>Google Mail - keyboard controls.</title>
				<link>http://nil.checksite.co.uk/index.cfm/2006/3/15/google-mail-keyboard-controls</link>
				<description>
				
				When I was at Concept Personnel last week, Gillian, the young lady I met up with to talk about my CV and what kinds of job I would like to apply for, mentioned &lt;a href=&quot;http://www.mattcutts.com/blog/&quot; target=&quot;_blank&quot;&gt;Matt Cutts&lt;/a&gt; when we were talking about SEO stuff.  The name was familliar but I&apos;ve never been and read his blog.

If you don&apos;t know who Matt Cutts is, he&apos;s an employee of Google who blogs about all sorts of stuff including SEO and Google products.  I found an interesting little blog which made me realise that you can use &lt;a href=&quot;http://www.mattcutts.com/blog/im-not-the-only-annoyed-one/&quot; target=&quot;_blank&quot;&gt;keyboard shortcuts in GMail&lt;/a&gt;  Personally, I&apos;ve got a mouse grafted to the palm of my hand, but its nice to know that if I wanted to I could access, reply and send google mail using keyboard short cuts.  This is a neat trick with event listening with AJAX. 
				</description>
				
				<category>General</category>
				
				<category>Web Development</category>
				
				<category>AJAX</category>
				
				<pubDate>Wed, 15 Mar 2006 16:09:00 -0700</pubDate>
				<guid>http://nil.checksite.co.uk/index.cfm/2006/3/15/google-mail-keyboard-controls</guid>
				
				
			</item>
			</channel></rss>