<?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>Jon Hartmann - Java in ColdFusion</title>
			<link>http://www.jonhartmann.com/index.cfm</link>
			<description>Technical blog of West Virginia web developer Jon Hartmann, covering ColdFusion, Asp.NET, Javascript, User Interface Design, and current website trends.</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 04:19:10 -0500</pubDate>
			<lastBuildDate>Sat, 04 Apr 2009 15:16:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jon.hartmann@gmail.com</managingEditor>
			<webMaster>jon.hartmann@gmail.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>jon.hartmann@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Jon Hartmann</title>
				<link>http://www.jonhartmann.com/index.cfm</link>
			</image>
			<itunes:explicit></itunes:explicit>
			
			<item>
				<title>Use $ to Instantiate Java Nested Static Classes in ColdFusion</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/4/4/Use--to-Instantiate-Java-Nested-Static-Classes-in-ColdFusion</link>
				<description>
				
				Ok, so this isn&apos;t news; apparently its common knowledge to some that you can instantiate a nested Java class by using a $ instead of a . in the name:

&lt;code&gt;&lt;cfset local.RoundRectangle2D = CreateObject(&quot;java&quot;, &quot;java.awt.geom.RoundRectangle2D$Float&quot;) /&gt;&lt;/code&gt;

I&apos;m posting this because I found it impossible to locate this information on the web. I even had an Adobe tech tell me he was logging a bug that CF couldn&apos;t handle nested classes, because even he didn&apos;t seem to know that you could do this.  Its now in the CF8 LiveDocs, and its now on my website. Perhaps the next person in line will be able to find it easier. 
				</description>
				
				<category>Java in ColdFusion</category>				
				
				<pubDate>Sat, 04 Apr 2009 15:16:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/4/4/Use--to-Instantiate-Java-Nested-Static-Classes-in-ColdFusion</guid>
				
			</item>
			
			<item>
				<title>Transparent Rounded Corners for the Masses</title>
				<link>http://www.jonhartmann.com/index.cfm/2009/4/4/Transparent-Rounded-Corners-for-the-Masses</link>
				<description>
				
				Ok, so a late night of coding here&amp;hellip; I should have been in bed like 2+ hours ago, but its all worth it because I&apos;ve got it working: fully transparent rounded corners on your images. Just hit &quot;more&quot; to see the code.  [More]
				</description>
				
				<category>CFImage</category>				
				
				<category>Java in ColdFusion</category>				
				
				<pubDate>Sat, 04 Apr 2009 01:50:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2009/4/4/Transparent-Rounded-Corners-for-the-Masses</guid>
				
			</item>
			
			<item>
				<title>Updates to Regex Tester</title>
				<link>http://www.jonhartmann.com/index.cfm/2008/7/9/Updates-to-Regex-Tester</link>
				<description>
				
				I&apos;ve updated my old regular expression testing tool. Previously, it only did ColdFusion 8 regular expression testing. Now it also performs tests against Java&apos;s regular expression matching. &lt;a href=&quot;http://www.jonhartmann.com/programming/regex.cfm&quot;&gt;Click here to view my ColdFusion 8 and Java Regex Tester.&lt;/a&gt; 
				</description>
				
				<category>Regular Expressions</category>				
				
				<category>Java in ColdFusion</category>				
				
				<pubDate>Wed, 09 Jul 2008 22:47:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2008/7/9/Updates-to-Regex-Tester</guid>
				
				<enclosure url="http://www.jonhartmann.com/enclosures/18update.jpg" length="18731" type="image/jpeg"/>
				
			</item>
			
			<item>
				<title>Transparent Background</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/10/6/Transparent-Background</link>
				<description>
				
				One of the big frustrations about CF8 image effects, is the lack of any way to get transparent writes or backgrounds. While most people think of transparent as just one more color, when you look at how Java handles pixels, you&apos;ll understand why Adobe didn&apos;t take the time to do this themselves.  [More]
				</description>
				
				<category>CFImage</category>				
				
				<category>Java in ColdFusion</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 06 Oct 2007 08:33:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/10/6/Transparent-Background</guid>
				
			</item>
			
			<item>
				<title>Transparent Backgrounds for CF8 CFImage</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/9/2/Transparent-Backgrounds-for-CF8-CFImage</link>
				<description>
				
				Can you create an image with a transparent background, but it takes creating some Java objects. I&apos;ll be posting the code as part of an image effects set, but you an follow the steps &lt;a href=&quot;http://www.ibm.com/developerworks/library/j-begjava/index.html&quot;&gt;here&lt;/a&gt; to figure out how to do it. 
				</description>
				
				<category>CFImage</category>				
				
				<category>Java in ColdFusion</category>				
				
				<pubDate>Sun, 02 Sep 2007 16:55:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/9/2/Transparent-Backgrounds-for-CF8-CFImage</guid>
				
			</item>
			
			<item>
				<title>Implementing Sleep in CF</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/8/16/Java-in-ColdFusion</link>
				<description>
				
				So I&apos;m trying to import around 10,000 records through loops in CF&lt;ins&gt;7&lt;/ins&gt;, because I have to tack in some additional info for each record... fun. I&apos;d like to sleep the process for a bit, but CF&lt;ins&gt;7&lt;/ins&gt; doesn&apos;t have a built in method for that... Java objects to the rescue.

&lt;h2&gt;Java Object Sleep in CF&lt;ins&gt;7&lt;/ins&gt;&lt;/h2&gt;
&lt;code&gt;
&lt;cfset objThread = CreateObject(&quot;java&quot;, &quot;java.lang.Thread&quot;)&gt;
&lt;cfset objThisThread = objThread.currentThread()&gt;
&lt;cfset objThisThread.sleep(500)&gt;
&lt;/code&gt;

But, as someone at House of Fusion warns:

&lt;blockquote&gt;
&lt;p&gt;
[The] thread [is] in the queue sleeping, and so if you have configged CF to use max 20 CF threads, and you sleep 20 threads, no requests will be handled by the server unless one of the threads gets free.
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ins&gt;Below you can find the syntax for doing this in CF8, as mentioned by Jeff. Thanks for pointing that out Jeff!&lt;/ins&gt;

&lt;code&gt;
&lt;!--- Sleep current thread for 5 seconds ---&gt;
&lt;cfset sleep(5000)/&gt;
&lt;/code&gt; 
				</description>
				
				<category>Java in ColdFusion</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 16 Aug 2007 11:32:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/8/16/Java-in-ColdFusion</guid>
				
			</item>
			
			<item>
				<title>StackCore</title>
				<link>http://www.jonhartmann.com/index.cfm/2007/8/1/StackCore</link>
				<description>
				
				I&apos;ve come up with a .02 version of warpcore using a Java Stack as the event manager, but from simple testing it doesn&apos;t seem to be as fast as the previous version. I&apos;m going to have to narrow this down to creation time or execution time though.

Click more to see the code.  [More]
				</description>
				
				<category>Frameworks</category>				
				
				<category>Experiments</category>				
				
				<category>Java in ColdFusion</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 01 Aug 2007 17:44:00 -0500</pubDate>
				<guid>http://www.jonhartmann.com/index.cfm/2007/8/1/StackCore</guid>
				
			</item>
			</channel></rss>