<?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>Trunkful.com &lt;cf_gems&gt;</title>
			<link>http://www.trunkful.com/index.cfm</link>
			<description>A ColdFusion blog with some twists. The Twists are BlueDragon and PostgreSQL DB server.  I also specialize in JVM tuning and monitoring.</description>
			<language>en-us</language>
			<pubDate>Wed, 22 May 2013 02:21:27 -0500</pubDate>
			<lastBuildDate>Fri, 19 Apr 2013 01:53:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>wilgeno@trunkful.com</managingEditor>
			<webMaster>wilgeno@trunkful.com</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>wilgeno@trunkful.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>CF.Objective() in the Winter</title>
				<link>http://www.trunkful.com/index.cfm/2013/4/19/CFObjective-in-the-Winter</link>
				<description>
				
				&lt;p&gt;Today is April 19th and here in Minnesota it&apos;s snowing as if it was winter. Several years ago CF.Objective() was right about this weekend. Be happy this year that CF.Objective() is next month and not this weekend. Of course there is no promise that next month will be any warmer. Let&apos;s hope for warmer weather and a little sunshine. &lt;/p&gt;

&lt;img src=&quot;http://www.trunkful.com/images/WinterInApril.jpg&quot; style=&quot;display: block; margin-left: auto; margin-right: auto;width:600px;&quot; /&gt;

&lt;p&gt;Then again this is Minnesota, bring warm clothes. &lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Fri, 19 Apr 2013 01:53:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2013/4/19/CFObjective-in-the-Winter</guid>
				
				
			</item>
			
			<item>
				<title>CFMAIL Attachments to Apple iPad and iPhone</title>
				<link>http://www.trunkful.com/index.cfm/2013/3/1/CFMAIL-Attachments-to-Apple-iPad-and-iPhone</link>
				<description>
				
				&lt;p&gt;A while back a &lt;a href=&quot;https://bugbase.adobe.com/index.cfm?event=bug&amp;id=3359625&quot; target=&quot;_blank&quot;&gt;bug was filed with Adobe&apos;s bug tracker&lt;/a&gt; about CFMAIL not setting headers correctly for attachments and thus causing them not to be seen or able to open on Apple &apos;iDevices&apos;. I had responded that this should not be a bug because setting the CFMAILPARAM tag correctly should be enough and pointed them to my own blog post about properly sending CFMAIL. Well, I was wrong and I was right. My previous &lt;a href=&quot;http://www.trunkful.com/index.cfm/2010/5/27/How-to-CFMAIL-Properly-and-Keep-the-SPAM-in-the-Can&quot; target=&quot;_blank&quot;&gt;blog post&lt;/a&gt; had a slightly incorrect example of how to setup the CFMAILPARAM tag and thus was causing this issue. Sorry about that :(. The email headers were having the Content-type set to &quot;multipart/related&quot; instead of &quot;multipart/mixed&quot; and while I could open the attachment in every email client out there the attachments would not open on my iPhone or iPad. Granted that when I wrote that original blog post I didn&apos;t own an iDevice and never tested the code for those. 
&lt;/p&gt;&lt;p&gt; 
The good news is that after a little testing with trial and error I discovered the error of my code. Great news! Attachments sent from CFMAIL in ColdFusion 9.0.1 and ColdFusion 10 work perfectly. I&apos;m presuming this will work on previous versions with the CFMAILPARAM tag.
&lt;/p&gt;&lt;p&gt; 
The code: From my previous post I had this example. It all looks great. But one item causes an issue. Setting the contentID attribute in the CFMAILPARAM tag causes the email content-type to be set as &quot;multipart/related&quot;. By simply omitting that setting emails now have content-type &quot;multipart/mixed&quot; set in the email header. A small but significant difference when it comes to open email attachments on the iPad and iPhone. 
&lt;/p&gt;
&lt;code&gt;
Old Code:

&lt;cfmail to=&quot;#form.mailto#&quot; from=&quot;#form.mailFrom#&quot; subject=&quot;#form.subject#&quot; type=&quot;html&quot;&gt;
&lt;cfmailparam file=&quot;/document/path/mypdf.pdf&quot; contentID=&quot;#createUUID()#&quot; disposition=&quot;attachment&quot; type=&quot;application/PDF&quot;&gt;
&lt;cfmailpart type=&quot;text/plain&quot; charset=&quot;utf-8&quot;&gt;#textmessage(mailmessage)#&lt;/cfmailpart&gt;
&lt;cfmailpart type=&quot;text/html&quot; charset=&quot;utf-8&quot;&gt;#mailmessage#&lt;/cfmailpart&gt;
&lt;/cfmail&gt;

New and Correct Code:

&lt;cfmail to=&quot;#form.mailto#&quot; from=&quot;#form.mailFrom#&quot; subject=&quot;#form.subject#&quot; type=&quot;html&quot;&gt;
&lt;cfmailparam file=&quot;/document/path/mypdf.pdf&quot; disposition=&quot;attachment&quot; type=&quot;application/PDF&quot;&gt;
&lt;cfmailpart type=&quot;text/plain&quot; charset=&quot;utf-8&quot;&gt;#textmessage(mailmessage)#&lt;/cfmailpart&gt;
&lt;cfmailpart type=&quot;text/html&quot; charset=&quot;utf-8&quot;&gt;#mailmessage#&lt;/cfmailpart&gt;
&lt;/cfmail&gt;

&lt;/code&gt;
&lt;p&gt;The Moral: You can always learn something by going back and reviewing what you did in the past and taking notes.&lt;/p&gt;

&lt;textblock label=&quot;RandomToolsCF10&quot;&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Fri, 01 Mar 2013 10:57:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2013/3/1/CFMAIL-Attachments-to-Apple-iPad-and-iPhone</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 Install bug IIS 7.5</title>
				<link>http://www.trunkful.com/index.cfm/2012/12/27/ColdFusion-10-Install-bug-IIS-75</link>
				<description>
				
				The other day I was installing a new &lt;a href=&quot;http://www.adobe.com/products/coldfusion-family.html&quot; tagert=&quot;_blank&quot;&gt;ColdFusion 10&lt;/a&gt; server on Windows 2008 Server for one of our clients at &lt;a href=&quot;http://www.cfwebtools.com&quot; target=&quot;_blank&quot;&gt;CFWebtools&lt;/a&gt;. This is a &quot;Standard&quot; license install so during the setup I chose to configure &quot;All Sites for IIS&quot; and thats when I ran into this error &quot;Cannot configure IIS connector. Enable the required options ASP.NET, ISAPI Extensions and ISAPI Filter in IIS 7.5 under Windows Features and try again.&quot; After checking the IIS 7.5 features I found that those IIS feature were in fact installed. I tried several times and continued to get the same error. 
&lt;/p&gt;
&lt;img src=&quot;http://www.trunkful.com/images/IIS_CF10_error.PNG&quot; style=&quot;display: block; margin-left: auto; margin-right: auto;width:410px;&quot; /&gt;
&lt;p&gt;I had to research this issue and didn&apos;t find anyone talking about this error, thus this blog post. I found what I needed in the Adobe ColdFusion 10 install documentation. (When all else fails read the instructions?) The IIS 7.5 feature CGI also need to be enabled. Well hey, it would be nice if the error message mentioned that one too!&lt;/p&gt;&lt;p&gt;It turns out there is already a &lt;a href=&quot;https://bugbase.adobe.com/index.cfm?event=bug&amp;id=3190071&quot; target=&quot;_blank&quot;&gt;bug report filed&lt;/a&gt; for this and Adobe claims it is fixed. However, the problem does persist because Adobe needs to change the actual file that you download. A &quot;patch&quot; after the fact is pointless when trying to fix an installation bug. And this bug is really just an &quot;Error Message&quot; that is incomplete. Enabling CGI in IIS 7.5 allows you to complete the installation.&lt;/p&gt;&lt;p&gt;I hope this short post saves someone time and hassle.&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Thu, 27 Dec 2012 17:00:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/12/27/ColdFusion-10-Install-bug-IIS-75</guid>
				
				
			</item>
			
			<item>
				<title>Installing ColdFusion 10 on OS X Mountain Lion</title>
				<link>http://www.trunkful.com/index.cfm/2012/12/26/Installing-ColdFusion-10-on-OS-X-Mountain-Lion</link>
				<description>
				
				&lt;p&gt;So Adobe is late to the party again. Months after Apple released OS X 10.8 Adobe &lt;a href=&quot;http://blogs.coldfusion.com/post.cfm/coldfusion-10-support-on-windows-8-and-os-x-mountain-lion&quot; target=&quot;_blank&quot;&gt;announced it would take 3 to 5 more months&lt;/a&gt; to get a compatible version of ColdFusion 10 on OSX 10.8. Myself and others have been critical of Adobe on this point and still 3 months later no new word on this from Adobe. I&apos;m sorry Adobe, but to many of us this isn&apos;t an acceptable timeline. Until now I have not had the ability to just experiment and see if I could get it working properly. I use my primary computer (an iMac) for work. I didn&apos;t have time to to Adobe&apos;s job.   
&lt;/p&gt;
&lt;p&gt;
Now I have a shinny new out of the box MacBook Pro that is fresh and clean and ready for experimentation. Little did it know it was doomed to be a lab rat.
&lt;/p&gt;
&lt;p&gt;
Unfortunately Apple like Microsoft has been dumbing down their operating systems to match the masses of users. I fear we&apos;re losing the education battle, but that is another topic. One of the changes Apple made was to remove Web Sharing from the Sharing section of System Preferences. This is now an OS X Server feature. If you upgraded from OS X Lion you still have this option in Sharing. Apache is still included and if you know what you are doing you can still use Apache. You can use a command line to start and stop Apache or if you want a section in System Preferences to start and stop Apache you can install this &lt;a href=&quot;http://clickontyler.com/blog/2012/02/web-sharing-mountain-lion/&quot; target=&quot;_blank&quot;&gt;http://clickontyler.com/blog/2012/02/web-sharing-mountain-lion/&lt;/a&gt;.  [More]
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Wed, 26 Dec 2012 00:18:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/12/26/Installing-ColdFusion-10-on-OS-X-Mountain-Lion</guid>
				
				
			</item>
			
			<item>
				<title>Encryption and Decryption in ColdFusion</title>
				<link>http://www.trunkful.com/index.cfm/2012/11/4/Encryption-and-Decryption-in-ColdFusion</link>
				<description>
				
				&lt;p&gt;A while back I was testing the Encrypt and Decrypt functions of ColdFusion 10 (during the Beta program) and I was running into issues of it failing. I kept getting this error for some of the encryption types &quot;&lt;i&gt;There has been an error while trying to encrypt or decrypt your input string: The input and output encodings are not same.&lt;/i&gt;&quot;. Upon submitting a bug report we figured out that I did not have the &quot;&lt;a href=&quot;http://www.oracle.com/technetwork/java/javase/downloads/jce-6-download-429243.html&quot; target=&quot;_blank&quot;&gt;Java Cryptography Extension&lt;/a&gt;&quot; installed on my computer. Doh!  After installing that all the encryption and decryption code worked just fine. &lt;/p&gt;
&lt;p&gt;One nice side note is that during my testing of these functions I wrote a little CFM script that lets you test all the different encryption and decryption types available to ColdFusion. I believe these are all ColdFusion 9 and up, but I may be wrong. It&apos;s been a while and I don&apos;t remember. So the point of this blog post is two fold; one, you need the &quot;&lt;b&gt;Java Cryptography Extension&lt;/b&gt;&quot; installed and two, the code below provides a very decent example of how to code the encryption and decryption functions in ColdFusion.&lt;/p&gt;
&lt;p&gt;So I hereby set this code free into the wind!&lt;/p&gt;

&lt;code&gt;
&lt;cfparam name=&quot;form.data&quot; default=&quot;&quot;&gt;
&lt;cfparam name=&quot;form.key&quot; default=&quot;&quot;&gt;
&lt;cfparam name=&quot;form.encryptType&quot; default=&quot;&quot;&gt;
&lt;cfparam name=&quot;form.myEncoding&quot; default=&quot;&quot;&gt;

&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;Encrypt Me&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form action=&quot;encrypt.cfm&quot; method=&quot;post&quot;&gt;
	Data to Encrypt:&lt;cfoutput&gt;&lt;input type=&quot;text&quot; name=&quot;data&quot; value=&quot;#form.data#&quot; size=&quot;40&quot;&gt;&lt;/cfoutput&gt;&lt;br /&gt;
	Encryption Key:&lt;cfoutput&gt;&lt;input type=&quot;text&quot; name=&quot;key&quot; value=&quot;#form.key#&quot; size=&quot;40&quot;&gt;&lt;/cfoutput&gt;&lt;br /&gt;
	Method:&lt;select name=&quot;encryptType&quot; size=&quot;1&quot;&gt;
		&lt;option value=&quot;CFMX_COMPAT&quot;&lt;cfif form.encryptType eq &quot;CFMX_COMPAT&quot;&gt; selected&lt;/cfif&gt;&gt;CFMX_COMPAT&lt;/option&gt;
		&lt;option value=&quot;AES&quot;&lt;cfif form.encryptType eq &quot;AES&quot;&gt; selected&lt;/cfif&gt;&gt;AES&lt;/option&gt;
		&lt;option value=&quot;DES&quot;&lt;cfif form.encryptType eq &quot;DES&quot;&gt; selected&lt;/cfif&gt;&gt;DES&lt;/option&gt;
		&lt;option value=&quot;DESEDE&quot;&lt;cfif form.encryptType eq &quot;DESEDE&quot;&gt; selected&lt;/cfif&gt;&gt;Triple DES&lt;/option&gt;
		&lt;option value=&quot;DESX&quot;&lt;cfif form.encryptType eq &quot;DESX&quot;&gt; selected&lt;/cfif&gt;&gt;DESX&lt;/option&gt;
		&lt;option value=&quot;BLOWFISH&quot;&lt;cfif form.encryptType eq &quot;BLOWFISH&quot;&gt; selected&lt;/cfif&gt;&gt;BLOWFISH&lt;/option&gt;
		&lt;option value=&quot;RC2&quot;&lt;cfif form.encryptType eq &quot;RC2&quot;&gt; selected&lt;/cfif&gt;&gt;RC2&lt;/option&gt;
		&lt;option value=&quot;RC4&quot;&lt;cfif form.encryptType eq &quot;RC4&quot;&gt; selected&lt;/cfif&gt;&gt;RC4&lt;/option&gt;
		&lt;option value=&quot;RC5&quot;&lt;cfif form.encryptType eq &quot;RC5&quot;&gt; selected&lt;/cfif&gt;&gt;RC5&lt;/option&gt;
	&lt;/select&gt;&lt;br /&gt;
	 Select the encoding:
    &lt;select size=&quot;1&quot; name=&quot;myEncoding&quot;&gt;
        &lt;option value=&quot;UU&quot;&lt;cfif form.myEncoding eq &quot;UU&quot;&gt; selected&lt;/cfif&gt;&gt;UU&lt;/option&gt;
        &lt;option value=&quot;Base64&quot;&lt;cfif form.myEncoding eq &quot;Base64&quot;&gt; selected&lt;/cfif&gt;&gt;Base64&lt;/option&gt;
        &lt;option value=&quot;Hex&quot;&lt;cfif form.myEncoding eq &quot;Hex&quot;&gt; selected&lt;/cfif&gt;&gt;Hex&lt;/option&gt;
    &lt;/select&gt;&lt;br&gt;
	&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Encrypt This&quot;&gt;
&lt;/form&gt;

&lt;cfscript&gt;
       if(len(trim(form.data) ) and len( trim(form.encryptType) ) ) {

       try {
		if (form.encryptType eq &quot;CFMX_COMPAT&quot;) {
			theKey = Form.key;
		} else {
			// For all other encryption techniques, generate a secret key.
			theKey = generateSecretKey(Form.encryptType);
		}

		encrypted = encrypt(form.data,theKey,form.encryptType,form.myEncoding);

		decrypted = decrypt(encrypted,theKey,form.encryptType,form.myEncoding);

		writeOutput(&quot;&lt;br&gt;&lt;br&gt;CODE:&lt;br&gt;&lt;br&gt;&quot;);
		writeOutput(&quot;encrypted = encrypt(form.data,theKey,form.encryptType,form.myEncoding);&lt;br&gt;&quot;);
		writeOutput(&quot;encrypted = encrypt(&apos;#form.data#&apos;,&apos;#theKey#&apos;,&apos;#form.encryptType#&apos;,&apos;#form.myEncoding#&apos;);&lt;br&gt;&lt;br&gt;&quot;);
		writeOutput(&quot;decrypted = decrypt(encrypted,theKey,form.encryptType,form.myEncoding);&lt;br&gt;&quot;);
		writeOutput(&quot;decrypted = decrypt(&apos;#encrypted#&apos;,&apos;#theKey#&apos;,&apos;#form.encryptType#&apos;,&apos;#form.myEncoding#&apos;);&quot;);


	}
	catch(any e) {
		writeOutput(&quot;generateSecretKey(&apos;&quot; &amp; Form.encryptType &amp; &quot;&apos;) = &quot; &amp; theKey );
		writeDump(e);abort;
	}

	writeOutput(&quot;&lt;hr&gt;#form.data# encrypted with #form.encryptType# is: #encrypted#&lt;br /&gt;&lt;br&gt;and now to decrypt it again: #decrypted#&quot;);


	}
&lt;/cfscript&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;/code&gt;


&lt;p&gt;&lt;textblock label=&quot;RandomToolsCF9&quot;&gt;&lt;/textblock&gt;&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Sun, 04 Nov 2012 20:47:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/11/4/Encryption-and-Decryption-in-ColdFusion</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 on OS X Mountain Lion, Eventually</title>
				<link>http://www.trunkful.com/index.cfm/2012/9/22/ColdFusion-10-on-OS-X-Mountain-Lion-Eventually</link>
				<description>
				
				&lt;p&gt;Adobe just &lt;a href=&quot;http://blogs.coldfusion.com/post.cfm/coldfusion-10-support-on-windows-8-and-os-x-mountain-lion&quot; target=&quot;_blank&quot;&gt;announced&lt;/a&gt; on September 22, 2012 that they are FINALLY going to support ColdFusion server on OSX again.

&lt;blockquote&gt;The support for ColdFusion 10 on Windows 8 and OSX Mountain Lion is coming. We will be releasing new installers to support these new platforms. While it is not possible to point out the release date for these installers at this time, the installers will be made available in the next 3-5 months time. - Adobe ColdFusion Blog&lt;/blockquote&gt;
&lt;/p&gt;&lt;p&gt;Seriously?!? In the next 3 to 5 months? You expect me and other OS X users to wait for 3 to 5 months to upgrade our OS to Mountain Lion? That is purely UNACCEPTABLE! Adobe you are trailing the pack again. Something they&apos;ve gotten used to unless it&apos;s their pretty boy flagship product PhotoShop. Back on July 25th Apple released OSX Mountain Lion 10.8. &lt;a href=&quot;&quot;http://www.trunkful.com/index.cfm/2012/7/25/OS-X-Mountain-Lion-Launches-Today target=&quot;_blank&quot;&gt;I asked then if Adobe would actually support ColdFusion 10 on Mountain Lion&lt;/a&gt;. All I heard was crickets. Remember that Adobe threw in the towel on supporting ColdFusion 9 on OSX Lion 10.7. 
&lt;blockquote&gt;By Rakshith - 1:45 PM on November 7, 2011  
With our current focus on ColdFusion Zeus, we will not be fixing these issues at this point.

We will not be working towards supporting ColdFusion 9.0.1 on Lion. However, ColdFusion Zeus will be supported on OSX Lion.&lt;/blockquote&gt;

ColdFusion 9.0.1 never fully worked on OSX Lion. Adobe first ignored the issue, then blamed us for having installed it wrong, then finally when myself and another blogger forced the issue and proved publicly where the problem was located they relented and admitted there was a problem. Adobe then released a &quot;patch&quot; but never asked those of us that found the problem to test the patch. Thus the patch was only a partial patch and failed. Then Adobe issued the statement above, not as a main entry on their blog but buried DEEP in the comments section in &lt;a href=&quot;http://blogs.adobe.com/coldfusion/2011/09/17/osx-lion-is-now-supported-with-the-release-of-chf2-for-9-0-1/#comment-2177&quot; target=&quot;_blank&quot;&gt;this blog post&lt;/a&gt;. Why would Adobe make that announcement like that? To hide the fact from the rest of the world that Adobe just doesn&apos;t care about developing for the Mac?&lt;/p&gt;&lt;p&gt; 
So officially we have not had a fully supported version of ColdFusion (any version) since July 20, 2011. Yes, ColdFusion 10 was released this past May, but seriously almost NO ONE is using it yet. So from Mid may until Mid July of 2012 Adobe can technically claim they supported OSX. That&apos;s pretty lame. Apple offeres developers the opportunity to have early access tot he next OS so developers can have their software ready to go on day one of the new OSX. Why is Adobe not doing this? I have no clue! Maybe Adobe should fire the developer team and bring development back to the United States and hire better developers.&lt;/a&gt; Again, I don&apos;t know. But I do know I am getting tired of Adobe trailing the pack and providing half baked solutions for OSX. Get a clue Adobe, OSX is on the rise! Especially among your customer base.&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 22 Sep 2012 14:15:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/9/22/ColdFusion-10-on-OS-X-Mountain-Lion-Eventually</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion Job Opening: CF Webtools</title>
				<link>http://www.trunkful.com/index.cfm/2012/9/19/ColdFusion-Job-Opening-CF-Webtools</link>
				<description>
				
				CF Webtools just posted a &lt;a href=&quot;http://www.coldfusionmuse.com/index.cfm/2012/9/19/Work-for-the-Muse-and-Change-Your-Life&quot; target=&quot;_blank&quot;&gt;job opening&lt;/a&gt;.

&lt;blockquote&gt;CF Webtools is looking for bright, talented, and motivated developers with high skill sets in ColdFusion, .NET and Mobile development (including IOS and Droid). &lt;/blockquote&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<category>this.Blog</category>
				
				<pubDate>Wed, 19 Sep 2012 14:53:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/9/19/ColdFusion-Job-Opening-CF-Webtools</guid>
				
				
			</item>
			
			<item>
				<title>Adobe ColdFusion 10 Hotfix Installer</title>
				<link>http://www.trunkful.com/index.cfm/2012/9/1/Adobe-ColdFusion-10-Hotfix-Installer</link>
				<description>
				
				&lt;p&gt;With the release of &lt;a href=&quot;http://www.adobe.com/products/coldfusion-family.html&quot; tagert=&quot;_blank&quot;&gt;ColdFusion 10&lt;/a&gt; came one new feature WE ALL have been asking Adobe to implement. This feature is the Hotfix installer and notifications. This is in the ColdFusion 10 Administrator under &quot;Server Update&quot; at the bottom of the left hand navigation menu. Yesterday I saw Adobe had released an update to ColdFusion 10. So today I decided to test the new Hotfix Installer. After launching my ColdFusion 10 Administrator I immediately saw in the upper right-hand corner and alert notifying me there was an update ready to download and install. So how does the installer work? During the alpha and beta testing with Adobe I never had a chance to test this feature. None of the alpha or beta updates were released in a way that could use the hot fix installer. So today is the first test I&apos;ve ever done of Hotfix Installer.
&lt;/p&gt;
&lt;img src=&quot;http://www.trunkful.com/images/ColdFusion10UpdateAlert.png&quot;  style=&quot;display: block; margin-left: auto; margin-right: auto;width:600px;&quot; /&gt;  [More]
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 01 Sep 2012 15:42:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/9/1/Adobe-ColdFusion-10-Hotfix-Installer</guid>
				
				
			</item>
			
			<item>
				<title>OS X Mountain Lion Launches Today</title>
				<link>http://www.trunkful.com/index.cfm/2012/7/25/OS-X-Mountain-Lion-Launches-Today</link>
				<description>
				
				According to an article on &lt;a href=&quot;http://www.macrumors.com/2012/07/24/os-x-mountain-lion-launching-tomorrow-july-25/&quot; target=&quot;_blank&quot;&gt;Mac Rumors&lt;/a&gt; Apple is releasing OS X Mountain Lion today! I don&apos;t see it in the App Store yet.

I bring this up because of Adobe and their complete inability to bring current software to the latest OS X version. Will ColdFusion 10 run on Mountain Lion? Why would I expect it to? Adobe could not be bothered to get ColdFusion 9 working correctly on OS X Lion.  Most of the work I do is for client on ColdFusion 9 and even ColdFusion 8. Thus upgrading my OS to take advantage of new features and software is always held back by Adobe. Will we have to wait for ColdFusion 11 as Adobe told us to wait for ColdFusion 10 if we wanted to run on OS X Lion.

How about ColdFusion Builder? Will this run on OS X Mountain Lion? This OS version has been in the works for a while and was announced many months ago. Yet Adobe is silent about their products.

The &lt;a href=&quot;http://roaringapps.com/apps:table/tags/_a/index_tags/_a&quot; target=&quot;_blank&quot;&gt;Roaring Apps website&lt;/a&gt; is doing a great job in getting user reports on what works with Lion and Mountain Lion. Not many Adobe products showing up as working.

Either I give up my Mac or I give up Adobe. Sorry Adobe, you&apos;re losing!

Adobe we are waiting for you to do something, anything correctly. 
				</description>
				
				<category>ColdFusion</category>
				
				<category>this.Blog</category>
				
				<category>CF Builder</category>
				
				<pubDate>Wed, 25 Jul 2012 00:50:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/7/25/OS-X-Mountain-Lion-Launches-Today</guid>
				
				
			</item>
			
			<item>
				<title>uCertify ACE ColdFusion Exam PrepKit</title>
				<link>http://www.trunkful.com/index.cfm/2012/5/26/uCertify-ACE-ColdFusion-Exam-PrepKit</link>
				<description>
				
				&lt;p&gt;First, I have to apologize to the fine people at &lt;a href=&quot;http://www.ucertify.com&quot; target=&quot;_blank&quot;&gt;uCertify&lt;/a&gt;, they sent me this offer to take the full ACE ColdFusion 9 practice test FOR FREE if I wrote a review.  So far I have been remiss in even downloading and starting on the Prep Kit. Sorry UCertify, today I did download the full Prep Kit. Thank you for your patience and polite reminders.
&lt;/p&gt;&lt;p&gt;
I have received an offer (Back in December of 2011 - my bad for taking so long to get started on this) from uCertify to review their PrepKit and I have accepted that challenge and now I am reviewing  &lt;a href=&quot;http://www.ucertify.com/exams/Adobe/9A0-127.html&quot; target=&quot;_blank&quot;&gt;Adobe 9A0-127 ColdFusion 9&lt;/a&gt; PrepKit from uCertify. Initially it looks MASSIVE! There are study guides, practice tests additional study materials , progress trackers and more! This looks like everything needed to complete and &quot;ace&quot; the ACE test. As soon as I am done with the full review I will post it for you all. (Let that be soon!)
&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 26 May 2012 14:43:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/5/26/uCertify-ACE-ColdFusion-Exam-PrepKit</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 Installation Notes</title>
				<link>http://www.trunkful.com/index.cfm/2012/5/19/ColdFusion-10-Installation-Notes</link>
				<description>
				
				&lt;p&gt;Now that &lt;a href=&quot;http://www.adobe.com/products/coldfusion-family.html&quot; tagert=&quot;_blank&quot;&gt;ColdFusion 10&lt;/a&gt; is officially released I wanted to update my previous blog post about &lt;a href=&quot;http://www.trunkful.com/index.cfm/2012/2/22/ColdFusion-10-Installation&quot; target=&quot;_blank&quot;&gt;ColdFusion 10 Installation&lt;/a&gt;. I completely uninstalled the beta versions and went to installing the official release. There were a couple changes that I noticed from the first public beta to the final release. One nice change was that requiring an insanely secure password for the Developer Edition has gone away. I do hope that with a serial number the strong password is still required.
&lt;/p&gt;&lt;p&gt;
The only other new installation item I saw was the new option for Enable Secure Profile. This installation option like you instantly choose between a local developer installation and a production installation. When you enable secure profile you are automatically disabling a few things by default, these are RDS, debugging, directory browsing and you have the option to limit ColdFusion Administrator access to one or more IP addresses. This is a really nice feature for someone that has to install production servers a regular basis. I hope this leads to more secure ColdFusion installations everywhere.
&lt;/p&gt;&lt;p&gt;
&lt;img src=&quot;http://www.trunkful.com/images/SecureProfile.png&quot; style=&quot;display: block; margin-left: auto; margin-right: auto;&quot; /&gt;
&lt;/p&gt;  [More]
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 19 May 2012 16:23:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/5/19/ColdFusion-10-Installation-Notes</guid>
				
				
			</item>
			
			<item>
				<title>Get Your ColdFusion Downloads While They Last</title>
				<link>http://www.trunkful.com/index.cfm/2012/5/16/Get-Your-ColdFusion-Downloads-While-They-Last</link>
				<description>
				
				Due to the Verity license expiring Adobe will quit offering some of the older versions of ColdFusion after May 31st, 2012. This &lt;a href=&quot;http://blogs.coldfusion.com/post.cfm/availability-of-coldfusion-9&quot; target=&quot;_blank&quot;&gt;Adobe ColdFusion Blog post&lt;/a&gt; covers the details including a new 9.0.2 version without Verity. Download what you think you&apos;ll need (or all of the versions) while you can. 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Wed, 16 May 2012 20:01:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/5/16/Get-Your-ColdFusion-Downloads-While-They-Last</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 10 Released Today</title>
				<link>http://www.trunkful.com/index.cfm/2012/5/15/ColdFusion-10-Released-Today</link>
				<description>
				
				&lt;p&gt;Can you believe it? Adobe just release &lt;a href=&quot;http://www.adobe.com/products/coldfusion-family.html&quot; target=&quot;_blank&quot;&gt;ColdFusion 10!&lt;/a&gt; I remember working with this fledgling &quot;Cold Fusion&quot; (was it version 2 or 3 back then?) server stuff back around 1997! Totally amazing that 15 years later &lt;a href=&quot;http://www.adobe.com/products/coldfusion-family.html&quot; target=&quot;_blank&quot;&gt;ColdFusion 10&lt;/a&gt; is here and getting stronger. And to think I had &quot;Professors&quot; in college at the time that were asking me &quot;Why would anyone want to connect a database to a webpage and actually interact with it?&quot; Now we know why!  
&lt;/p&gt;&lt;p&gt;
Congratulations to the &lt;a href=&quot;http://blogs.coldfusion.com/&quot; target=&quot;_blank&quot;&gt;ColdFusion Developer Team&lt;/a&gt; for their great work on this release. ColdFusion 10 marks in my opinion a third new era or generation for ColdFusion as it moves onto the &lt;a href=&quot;http://tomcat.apache.org/&quot; target=&quot;_blank&quot;&gt;Tomcat platform&lt;/a&gt;. Initially ColdFusion was C++ code then in migrated to Java with JRUN so those were the first two generations. Now we move onto the &lt;a href=&quot;http://tomcat.apache.org/&quot; target=&quot;_blank&quot;&gt;Tomcat Java Servlet&lt;/a&gt;. This is great news!
&lt;/p&gt;&lt;p&gt;&lt;i&gt;What is &apos;Today&apos; - It&apos;s after midnight on May15th when I got the notice from Adobe about the release.&lt;/i&gt;&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Tue, 15 May 2012 19:20:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/5/15/ColdFusion-10-Released-Today</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion Builder 2 Update 1 Beta (Twister) Installation</title>
				<link>http://www.trunkful.com/index.cfm/2012/2/25/ColdFusion-Builder-2-Update-1-Beta-Twister-Installation</link>
				<description>
				
				&lt;p&gt;I just had the most wonderful experience with &lt;a href=&quot;http://labs.adobe.com/technologies/coldfusion10/&quot; target=&quot;_blank&quot;&gt;ColdFusion Builder 2 Update 1 Beta&lt;/a&gt; (officially 2.0.1 according to the About window). Recently I have been testing the new public beta on both my Mac and on Windows 7. I do 99% of my development work from my Mac and I need this for work no questions asked. One of the caveats with this new update is that is will not install along side ColdFusion Builder 2. It&apos;s an update after all so that makes sense. But you can have ColdFusion Builder 2 installed as a Standalone install and then install this update as a plugin to Eclipse on the same machine. This is how I did my initial testing and dutifully filed my bug reports. However, I wasn&apos;t going to replace ColdFusion Builder 2 with this beta just yet. I need to get paid! I can&apos;t afford down time.
&lt;/p&gt;&lt;p&gt;
Today (a lazy hanged over Saturday) I decided that I was ready to make the switch. I uninstalled the plugin version of the update, then uninstalled my trusty ColdFusion Builder 2. The installation notes I have claims that ColdFusion Builder 2 Update 1 can (and really should) use your existing workspace and it should keep your plugins installed from your previous ColdFusion Builder 2.  
&lt;/p&gt;&lt;p&gt;
I am elated to report that this worked as advertised! Upon launching ColdFusion Builder 2.0.1 Beta I saw my previously opened files still opened. All my custom arrangement of tabs, windows etc still where I left them and my Subversive plugin was still there, in tact and still have my two dozen plus SVN Repository entries!
&lt;/p&gt;&lt;p&gt;
So from now on all my coding is going to be in Twister! Maybe this will grant me an excuse for my twisted codes! I do expect to run into issues, there are already known issues that the documentation points out and there are a few bugs. But then again this is still BETA ( Buggy Erratic Temperamental Application). 
&lt;/p&gt;&lt;p&gt;
Many thanks to the Adobe ColdFusion Developer Team!
&lt;/p&gt;&lt;p&gt;
ColdFusion Builder Team Blog (&lt;a href=&quot;http://blogs.adobe.com/cfbuilder/&quot; target=&quot;_blank&quot;&gt;http://blogs.adobe.com/cfbuilder/&lt;/a&gt;)&lt;br&gt;
ColdFusion Team Blog (&lt;a href=&quot;http://blogs.coldfusion.com/&quot; target=&quot;_blank&quot;&gt;http://blogs.coldfusion.com/&lt;/a&gt;)
&lt;/p&gt; 
				</description>
				
				<category>CF Builder</category>
				
				<pubDate>Sat, 25 Feb 2012 13:47:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/2/25/ColdFusion-Builder-2-Update-1-Beta-Twister-Installation</guid>
				
				
			</item>
			
			<item>
				<title>Free ColdFusion 10 Beta Hosting</title>
				<link>http://www.trunkful.com/index.cfm/2012/2/24/Free-ColdFusion-10-Beta-Hosting</link>
				<description>
				
				I just noticed that &lt;a href=&quot;http://hostek.com/aff.php?aff=630&amp;p=CF&quot; target=&quot;_blank&quot;&gt;Hostek.com&lt;/a&gt; is offering free ColdFusion 10 Beta hosting.  This is a limited offer! But you get to use ColdFusion 10 Beta on a public server.  

Details: &lt;a href=&quot;http://hostek.com/hosting/coldfusion/coldfusion10-hosting.asp&quot; target=&quot;_blank&quot;&gt;http://hostek.com/hosting/coldfusion/coldfusion10-hosting.asp&lt;/a&gt; 
				</description>
				
				<category>ColdFusion</category>
				
				<pubDate>Fri, 24 Feb 2012 11:52:00 -0500</pubDate>
				<guid>http://www.trunkful.com/index.cfm/2012/2/24/Free-ColdFusion-10-Beta-Hosting</guid>
				
				
			</item>
			</channel></rss>