<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Objective Action - Scorpio</title>
			<link>http://www.objectiveaction.com/Kevin/index.cfm</link>
			<description>An Objective Look at Adobe and the Internet</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 13:33:58+0100</pubDate>
			<lastBuildDate>Tue, 13 Nov 2007 14:49:00+0100</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>kevin@objectiveinternet.com</managingEditor>
			<webMaster>kevin@objectiveinternet.com</webMaster>
			
			
			
			
			
			<item>
				<title>CF7 to CF8 difference</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/11/13/CF7-to-CF8-difference</link>
				<description>
				
				CF8 just gave me an error in some code that ran OK on CF7.

The error message is:

&lt;strong&gt;coldfusion.compiler.ASTsimpleVariableReference cannot be cast to java.lang.String&lt;/strong&gt;

Which was caused by the use of a variable as an index in a loop. This would have taken ages to find but for &lt;a href=&quot;http://mrmx.blogspot.com/2007/06/obscure-cf8-error-message.html&quot; target=&quot;_blank&quot;&gt;a blog posting by Mike Rankin&lt;/a&gt;, thanks Mike.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Tue, 13 Nov 2007 14:49:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/11/13/CF7-to-CF8-difference</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>TVCFUG - CF8 on the 8th of the 8th</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/7/31/TVCFUG--CF8-on-the-8th-of-the-8th</link>
				<description>
				
				ColdFusion 8 has now started shipping. Come along to discover and discuss the new features that make this new release a must have upgrade. We will be showing an exclusive Video specially prepared by Ben Forta for user groups.

    * Where: Phones International Network House Globe Park Marlow SL7 1LY&lt;br /&gt;
    * When: Wednesday 8 Aug 2007&lt;br /&gt;
    * Meeting starts: 19:00&lt;br /&gt;
    * Meeting ends: 21:00&lt;br /&gt;

Some of CF8s new features include:

    * Performance increases&lt;br /&gt;
    * Server Monitor&lt;br /&gt;
    * PDF features&lt;br /&gt;
    * Ajax features&lt;br /&gt;
    * .NET integration&lt;br /&gt;
    * Microsoft Exchange Server integration&lt;br /&gt;
    * Interactive debugger&lt;br /&gt;
    * Adobe Flex integration&lt;br /&gt;
    * Per-application settings&lt;br /&gt;
    * Multi-threading&lt;br /&gt;
    * Image manipulation&lt;br /&gt;
    * Presentations on demand&lt;br /&gt;
    * Atom and RSS feeds&lt;br /&gt;
    * ZIP and JAR file features&lt;br /&gt;
    * User-based Administrator and RDS access&lt;br /&gt;
    * Improved file manipulation functions&lt;br /&gt;
    * JavaScript operators in CFML&lt;br /&gt;
    * CFC improvements&lt;br /&gt;
    * Strong encryption libraries&lt;br /&gt;
    * Reporting enhancements&lt;br /&gt;
    * Database interaction improvements&lt;br /&gt;
    * Argument collections&lt;br /&gt;
    * Array and structure creation improvements&lt;br /&gt;
    * Expanded platform, OS, and database support&lt;br /&gt;

Come along and see why you just have to have this new release. More details on the &lt;a href=&quot;http://www.ukcfug.org/index.cfm?objectid=1D8D5965-F1FF-921E-129073231A4AA17E&quot; target=&quot;_blank&quot;&gt; UKCFUG web site.&lt;/a&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>TVCFUG</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Tue, 31 Jul 2007 19:43:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/7/31/TVCFUG--CF8-on-the-8th-of-the-8th</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited - Advanced AJAX Development - Rakshith N</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/30/CFUnited--Advanced-AJAX-Development--Rakshith-N</link>
				<description>
				
				I went to another CF8 session with &lt;a href=&quot;http://www.rakshith.net/blog/&quot; target=&quot;_blank&quot;&gt;Rakshith N&lt;/a&gt; who was covering some of the new AJAX features.

CF8 now has an easy way to handle JSON. JSON is Javascript Object Notation and represents the data in Javascript. Based on array and object literals. It is less heavy than XML.

&lt;code&gt;
{ books:[
{isbn:&apos;00230&apos;, title:&apos;xyz&apos;}
{isbn:&apos;00231&apos;, title:&apos;abc&apos;}
}
&lt;/code&gt;

CF8 has new functions to deal with JSON 
&lt;ul&gt;
&lt;li&gt;SerializeJSON()&lt;/li&gt;
&lt;li&gt;DeserializeJSON()&lt;/li&gt;
&lt;li&gt;IsJSON()&lt;/li&gt;
&lt;/ul&gt;

When CF8 creates the JS data types, simple types remain as simple types, Arrays and Structs get converted to JS arrays and JS Structs.

There are two different formats of Query, Row format and Column format.

&lt;h4&gt;AJAX Plumbing&lt;/h4&gt;

Essentially when we use AJAX some area of the page will be updated by a call to the server from a Javascript program. There is some HTML markup for the area of the page we want to update. We can now define an AJAX region with a cfdiv tag. cfdiv uses the bind parameter to link to a cfc or cfm page that will be called to create the content for that area of the page.
 
&lt;code&gt;
&lt;cfdiv bind =&quot;url:foo.cfm&quot;&gt;
OR
&lt;cfdiv bind =&quot;cfc:bookData.getBookDetails({bookForm.isbn.value@change})&quot;&gt;
&lt;/code&gt;

There are four types of bind
&lt;ul&gt;
&lt;li&gt;CFC&lt;/li&gt;
&lt;li&gt;Javascript&lt;/li&gt;
&lt;li&gt;URL&lt;/li&gt;
&lt;li&gt;Plain&lt;/li&gt;
&lt;/ul&gt;

A new cfajaxproxy tag will create a JS proxy for a cfc method, allowing you to call the cfc from within javascript.

A ColdFusion object in the client JS code can be used to get information from ColdFusion. For example you can use &quot;ColdFusion.navigate&quot; on a link to make it download a JSON object from the server. 

Other examples:

&lt;code&gt;
ColdFusion.Ajax.submitForm(fomnId, url, callBasckHandler, errorHandler, httpMethod, asynch)

ColdFusion.log.dump(message.component)
&lt;/code&gt;

In addition there are now AJAX versions of the tree and grid controls which can replace the Java versions in earlier CF.

&lt;code&gt;
&lt;cftree name=&quot;mail&quot; format=&quot;html&quot; completepath=&quot;true&quot;&gt;
&lt;/code&gt;

There are tags to do layout like the flash form layout tags.

&lt;code&gt;
&lt;cflayout type=&quot;border&quot;&gt;

&lt;cflayoutarea &gt;
&lt;/code&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Conferences</category>				
				
				<category>AJAX</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Sat, 30 Jun 2007 14:21:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/30/CFUnited--Advanced-AJAX-Development--Rakshith-N</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited Day 2 - CFML Enhancements - Rupesh Kumar</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/30/CFUnited-Day-2--CFML-Enhancements--Rupesh-Kumar</link>
				<description>
				
				Yesterday there were a few problems with the network connections here at the conference. It seems thay have 4 lines this year versus the one they had last year but its still overloaded.

The first session I attended was a session on CFML enhancements by &lt;a href=&quot;http://coldfused.blogspot.com&quot; target=&quot;_blank&quot;&gt;Rupesh Kumar&lt;/a&gt; one of the Adobe CF Developers.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Conferences</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Sat, 30 Jun 2007 13:44:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/30/CFUnited-Day-2--CFML-Enhancements--Rupesh-Kumar</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion 8 Performance Figures</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/29/ColdFusion-8-Performance-Figures</link>
				<description>
				
				Ben Forta &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/6/27/ColdFusion-8-Performance-Numbers&quot; target=&quot;_blank&quot;&gt;has posted&lt;/a&gt; the expected improvements in performance on the various tags that have been improved in CF8.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Fri, 29 Jun 2007 18:28:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/29/ColdFusion-8-Performance-Figures</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited - The CF8 Server Monitor - Adam Lehman</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/28/CFUnited--The-CF8-Server-Monitor--Adam-Lehman</link>
				<description>
				
				Adam Lehman, gave an interesting presentation on the new CF8 Server Monitor which was built using Flash Player 9 as the presentation engine.

The first point he made is that it is not just for use in production for monitoring your live server, 80% of use should be in development. You need to understand what your code is doing so that there are no surprises when application goes into production. In fact you should never run the memory tracker in production, as it will place too much load on the server.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Conferences</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Thu, 28 Jun 2007 13:11:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/28/CFUnited--The-CF8-Server-Monitor--Adam-Lehman</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CFUnited Day 1 - CF8 and LiveCycle Data Services - Tom Jordahl</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/28/CFUnited-Day-1--CF8-and-LiveCycle-Data-Services--Tom-Jordahl</link>
				<description>
				
				Live Cycle Data Services can be used for RPC, Messaging and Data Management.

There is a free updater to CF7 which does most of this. But in this case you have to install two copies of JRun. One for CF7 and one for Data Services. With CF8 it will be installed with both Standard and Enterprise in same JRun instance, unless you untick the box in the install. It is difficult to update later, so may be worth installing it from the start.

This allows the Live Cycle APIs to be called directly which improves performance. There is no need for the RMI interface that would be required in earlier versions.

Flash Remoting has also been updated and can be used to connect Flex to ColdFusion.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Conferences</category>				
				
				<category>Flex</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Thu, 28 Jun 2007 13:03:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/28/CFUnited-Day-1--CF8-and-LiveCycle-Data-Services--Tom-Jordahl</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Ben Forta and Tim Buntel on CF8 - 8 Reasons you want it now</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/27/Ben-Forta-and-Tim-Buntel-on-CF8--8-Reasons-you-want-it-now</link>
				<description>
				
				The W8 is almost over.

Ben&apos;s slides were GR8! Well for those who are there you will know what I mean.

For those who weren&apos;t there here is the reasons why CF8 is a must have release.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Wed, 27 Jun 2007 13:33:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/27/Ben-Forta-and-Tim-Buntel-on-CF8--8-Reasons-you-want-it-now</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Free CF8 Hosting</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/7/Free-CF8-Hosting</link>
				<description>
				
				HostMySite are offering &lt;a href=&quot;http://www.hostmysite.com/CF8/&quot; target=&quot;_blank&quot;&gt;Free Hosting for CF8&lt;/a&gt;.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Thu, 07 Jun 2007 15:44:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/7/Free-CF8-Hosting</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Threading in ColdFusion 8</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/4/Threading-in-ColdFusion-8</link>
				<description>
				
				Ben Nadel has posted three good blog entries showing how to do threading in Scorpio (CF8).

&lt;a href=&quot;http://www.bennadel.com/index.cfm?dax=blog:743.view&quot; target=&quot;_blank&quot;&gt;Part 1 CFThread Part I - Data Exchange&lt;/a&gt;
 

&lt;a href=&quot;http://www.bennadel.com/blog/749-Learning-ColdFusion-8-CFThread-Part-II-Parallel-Threads.htm&quot; target=&quot;_blank&quot;&gt;Part 2 CFThread Part II - Parallel Threads&lt;/a&gt;


&lt;a href=&quot;http://www.bennadel.com/blog/750-Learning-ColdFusion-8-CFThread-Part-III-Set-It-And-Forget-It.htm&quot; target=&quot;_blank&quot;&gt;Part 3 CFThread Part III - Set It And Forget It&lt;/a&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Mon, 04 Jun 2007 17:42:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/4/Threading-in-ColdFusion-8</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>PHP in ColdFusion 8</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/4/PHP-in-ColdFusion-8</link>
				<description>
				
				Sean Corfield has &lt;a href=&quot;http://corfield.org/blog/index.cfm/do/blog.entry/entry/ColdFusion_8_running_PHP&quot; target=&quot;_blank&quot;&gt;posted an interesting entry&lt;/a&gt; on his blog about using Quercus to allow ColdFusion to execute PHP tags.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Mon, 04 Jun 2007 17:39:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/6/4/PHP-in-ColdFusion-8</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Scorpio News</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/5/10/Scorpio-News</link>
				<description>
				
				&lt;p&gt;There were a few &lt;a href=&quot;http://ray.camdenfamily.com/index.cfm/2006/10/24/Known-ColdFusion-8Scorpio-Facts&quot;&gt;already
known facts&lt;/a&gt; about the new version of &lt;a href=&quot;http://labs.adobe.com/wiki/index.php/Scorpio&quot;&gt;ColdFusion,
known as Scorpio&lt;/a&gt;. As the tour of user groups to promote the new version
progresses we are beginning to see some interesting postings on various Blogs.&lt;/p&gt;
&lt;p&gt;The first one I noticed was &lt;a href=&quot;http://www.daveshuck.com/blog/index.cfm/2007/5/1/My-notes-and-analysis-of-Ben-Fortas-presentation-to-the-DFWCFUG&quot;&gt;Dave Shuck&apos;s Blog&lt;/a&gt; which has a really comprehensive list of the new features.&lt;/p&gt;

&lt;p&gt;Dave reports on the capability of the new &lt;b&gt;&amp;lt;cfimage&amp;gt;&lt;/b&gt; tag which I
personally asked for in CF6 and CF7 but was disappointed. I don&apos;t expect to be
disappointed this time as the tag seems to do everything I want.&lt;/p&gt;

&lt;p&gt;I was also concerned by the lack of&amp;nbsp; an upgrade for the KTML edit
facility in the new Adobe Dreamweaver Developer Toolbox extensions which have
replaced the Interakt Tools, which we made good use of. I need not have worried
as a better and easier solution has bee provided by the new &lt;strong fixed_bound=&quot;true&quot;&gt;RICHTEXT=&amp;quot;true&amp;quot;&lt;b&gt;
&lt;/b&gt;&lt;/strong&gt;attribute on the &lt;b&gt;&amp;lt;cfinput&amp;gt;&lt;/b&gt; tag.&lt;/p&gt;

&lt;p&gt;Two new tags have been designed to allow easier construction of portal type
sites. &lt;b&gt;&amp;lt;cfpod&amp;gt;&lt;/b&gt; and &lt;b&gt;&amp;lt;cfwindow&amp;gt;&lt;/b&gt; can be used to create
panels that can be resized and moved around. Dynamic menus are also supported by
the &lt;b&gt;&amp;lt;cfmenu&amp;gt;&lt;/b&gt; tag.&lt;/p&gt;

&lt;p&gt;If you want to read a file &amp;lt;cfloop&amp;gt; will now loop over a file.&lt;/p&gt;

&lt;p&gt;The small number of architecture gurus will be happy by the introduction of
the &lt;b&gt;&amp;lt;cfinterface&amp;gt;&lt;/b&gt; tag which allows ColdFusion to implement object
oriented interfaces.&lt;/p&gt;

&lt;p&gt;To pass arguments to tags argumentsCollection can be used in most cases
avoiding some need to create strange logic when different numbers of parameters
are present.&lt;/p&gt;

&lt;p&gt;Integration with other Adobe products is a major benefit in the new version.
Adobe Acrobat Connect users will be pleased to see that presentations can be
created easily with the new &lt;strong fixed_bound=&quot;true&quot;&gt;&amp;lt;cfpresentation&amp;gt;&lt;/strong&gt;,&lt;strong fixed_bound=&quot;true&quot;&gt;
&amp;lt;cfpresenter&amp;gt; &lt;/strong&gt;and&lt;strong fixed_bound=&quot;true&quot;&gt; &amp;lt;cfpresentationslide&amp;gt;
&lt;/strong&gt;tags, while &lt;b&gt;&amp;lt;cfpdf&amp;gt;&lt;/b&gt; allows access to the metadata within a
pdf file, merge pdf files, generate thumbnails, and encrypt pdfs.&lt;/p&gt;

&lt;p&gt;The facilities with pdf files are also enhanced to allow forms to be completed
offline and submitted to CF8 for processing by use of the &lt;b&gt;&amp;lt;cfpdfform&amp;gt;&lt;/b&gt;
tag.&lt;/p&gt;

&lt;p&gt;As far as the cold fusion engine is concerned there is now much better
support for performance tuning, with real time monitoring and the ability to
take snapshots of the server at points when problems occur. Its also possible to
run CF8 in a virtual machine under VMware.&lt;/p&gt;

&lt;p&gt;On &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/5/2/Working-With-JSON-In-Scorpio&quot;&gt;Ben
Forta&apos;s Blog&lt;/a&gt; Ben has added more snippets with the news of support for JSON
in AJAX. Two new functions, SerializeJSON() and DeserializeJSON() make it easy
to convert data to and from JSON which is generally regarded as the best way to
move data to and from AJAX applications. In addition, CFC methods can now return
data serialized as JSON by specifying returnformat=&amp;quot;json&amp;quot;.&lt;/p&gt;

&lt;p&gt;Ben also &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/5/4/Scorpio-Makes-Syndication-Easy&quot;&gt;tells
us about&lt;/a&gt; another new tag &amp;lt;cffeed&amp;gt; which can be used to read and create
RSS or Atom syndication feeds.&lt;/p&gt;

&lt;p&gt;Regular Expressions &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/5/4/Scorpio-Adds-Two-New-RegEx-Functions&quot;&gt;get
two new function too&lt;/a&gt; with the introduction of REMatch() and REMatchNoCase().&lt;/p&gt;

&lt;p&gt;There are &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/5/8/Scorpio-Features-Greater-Control-Over-Administrator-And-RDS-Security&quot;&gt;new
security features&lt;/a&gt; in Scorpio, giving increased control and flexibility in
managing ColdFusion Administrator Access and RDS access.&lt;/p&gt;

&lt;p&gt;In his blog, &lt;a href=&quot;http://ray.camdenfamily.com/index.cfm/2007/5/2/Lots-of-Scorpio-ColdFusion-8-News&quot;&gt;Ray
Camden reveals&lt;/a&gt; that CF 8 has a function that checks for the existence of an
array element. There is no longer a need to use try/catch if you have arrays
that potentially have null elements.&lt;/p&gt;

&lt;p&gt;He &lt;a href=&quot;http://ray.camdenfamily.com/index.cfm/2007/5/6/cfObjective--Jason-Delmore-Scorpio-1337&quot;&gt;also
notes&lt;/a&gt; that there are new ways to create arrays and structs and that AJAX is
going to be supported through a number of tags. For example &amp;lt;cfajaxproxy&amp;gt;
will handle &lt;b&gt;all&lt;/b&gt; the JavaScript plumbing to let you invoke any CFC method
from JavaScript, and support for &lt;a href=&quot;http://www.forta.com/blog/index.cfm/2007/3/28/Scorpios-Ajax-Data-Grid&quot;&gt;refreshing
AJAX grid controls&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can also create a Spry dataset in CF8.&lt;/p&gt;

&lt;p&gt;Some people are &lt;a href=&quot;http://www.numtopia.com/terry/blog/archives/2007/04/adobe_made_me_obsolete.cfm&quot;&gt;worried
by the new features&lt;/a&gt; and think they might be on the way out. But personally
the &amp;lt;cfexcahnge&amp;gt; tag looks like it will make it possible to move into &lt;a href=&quot;http://www.adamfortuna.com/2007/04/25/coldfusion-8-scorpio-is-coming/&quot;&gt;new
areas of functionality&lt;/a&gt;, and Ian Smith has identified &lt;a href=&quot;http://www.downloadsquad.com/2007/04/24/9-ways-coldfusion-8-will-rule-web-development/&quot;&gt;9
ways for CF8 to rule web development&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://www.coldfusionmuse.com/index.cfm/2007/5/2/scorpio.developer&quot;&gt;ColdFusion
Muse&lt;/a&gt; has identified that Scorpio will support the standard set of operators
we are used to seeing from other languages like &amp;quot;++&amp;quot; and
&amp;quot;!=&amp;quot;. He also says that &lt;b&gt;&amp;lt;cfajaxproxy&amp;gt; &lt;/b&gt;allows you to
instantiate CFCs from the client. This exposes the functionality of your CFC in
your JavaScript.&lt;/p&gt;

&lt;p&gt;Among the other good CF8 snippets I found in the blogs were:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;getComponentMetaData - lets you get metadata by passing a path of a CFC. &lt;/li&gt;
  &lt;li&gt;&amp;lt;cfstoredproc&amp;gt; now supports caching&lt;/li&gt;
  &lt;li&gt;query caching now works even when using cfqueryparam&lt;/li&gt;
  &lt;li&gt;&amp;lt;cfftp&amp;gt; now supports sftp&lt;/li&gt;
  &lt;li&gt;cfc serialization for session replication&lt;/li&gt;
  &lt;li&gt;Flash form restrictions removed.&lt;/li&gt;
  &lt;li&gt;Apache Derby, a 100% Java database, will be supported. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I can&apos;t wait.....&lt;/p&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>AJAX</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Thu, 10 May 2007 18:21:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/5/10/Scorpio-News</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Scorpio Tour</title>
				<link>http://www.objectiveaction.com/Kevin/index.cfm/2007/5/9/Scorpio-Tour</link>
				<description>
				
				We are starting to see &lt;a href=&quot;http://daveshuck.instantspot.com/blog/index.cfm/2007/5/1/My-notes-and-analysis-of-Ben-Fortas-presentation-to-the-DFWCFUG&quot; target=&quot;_blank&quot;&gt;Blog&lt;/a&gt; &lt;a href=&quot;http://corfield.org/blog/index.cfm/do/blog.entry/entry/Ben_on_Scorpio_at_BACFUG&quot; target=&quot;_blank&quot;&gt;entries&lt;/a&gt; from people who have seen some of the Scopio Tour presentations.

We have our own planned in &lt;a href=&quot;http://www.ukcfug.org/index.cfm?objectid=DADE58EE-F1FF-921E-17D5F6863BA19916&quot; target=&quot;_blank&quot;&gt;London&lt;/a&gt; at the end of the month. I can&apos;t wait to see what other Londoners make of the presentation. Ben Forta can&apos;t make it to London and Adam Lehman will be standing in for him. We are looking forward to seeing Adam at our new London CFUG meeting place.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>Scorpio</category>				
				
				<pubDate>Wed, 09 May 2007 20:18:00+0100</pubDate>
				<guid>http://www.objectiveaction.com/Kevin/index.cfm/2007/5/9/Scorpio-Tour</guid>
				
			</item>
			
		 	
			</channel></rss>