<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>devnulled</title>
	
	<link>http://devnulled.com</link>
	<description>devnulled provides news, tips, resources, and articles about various topics that software developers and engineers enjoy.</description>
	<lastBuildDate>Tue, 22 Sep 2009 19:47:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<feedburner:info uri="devnulled" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><geo:lat>39.866785</geo:lat><geo:long>-105.041436</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://devnulled.com/feed/" /><feedburner:emailServiceId>Devnulled</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://devnulled.com/feed/" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Fdevnulled.com%2Ffeed%2F" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><item>
		<title>The Most Efficent Way to Increment A Map Value in Java</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/bo8d2wDdsuM/</link>
		<comments>http://devnulled.com/content/2009/09/the-most-efficent-way-to-increment-a-map-value-in-java/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 19:47:26 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Algorithms]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Disciplines]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[efficent]]></category>
		<category><![CDATA[increment]]></category>
		<category><![CDATA[increment value]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=768</guid>
		<description>Finding myself in a situation of needing to increment values in a map in Java, I was curious to see what the most efficient way to do so.  Said piece of code will be looped over thousands of times and I wanted it to run as quickly possible.  Yes, I know that pre-optimization [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/4aAxV2XNNpDHuqVh2V9As-KsOUo/0/da"><img src="http://feedads.g.doubleclick.net/~a/4aAxV2XNNpDHuqVh2V9As-KsOUo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4aAxV2XNNpDHuqVh2V9As-KsOUo/1/da"><img src="http://feedads.g.doubleclick.net/~a/4aAxV2XNNpDHuqVh2V9As-KsOUo/1/di" border="0" ismap="true"></img></a></p><p>Finding myself in a situation of needing to increment values in a map in Java, I was curious to see what the most efficient way to do so.  Said piece of code will be looped over thousands of times and I wanted it to run as quickly possible.  Yes, I know that pre-optimization is the root of all evil, but in this case it was something I needed to be conscious of.</p>
<p>I found a <a href="http://stackoverflow.com/questions/81346/most-efficient-way-to-increment-a-map-value-in-java">question/thread on StackOverflow</a> where someone else had already pondered the same thing and got a long list of possible answers to compare to each other, including using <a href="http://commons.apache.org/">Apache Commons</a> and the <a href="http://code.google.com/p/google-collections/">Google Collections Library</a>.   After testing all of them, the fastest way ended-up being implementing a "MutableInt" class and using it as the value data type in the map:</p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showCodeTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">class MutableInt <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; int value = <span style="color:#800000;color:#800000;">0</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; public void inc <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> ++value; <span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; public int get <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span> return value; <span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Map&lt;string ,MutableInt&gt; map = new HashMap&lt;string ,MutableInt&gt;<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">MutableInt value = map.<span style="">get</span> <span style="color:#006600; font-weight:bold;">&#40;</span>key<span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">if <span style="color:#006600; font-weight:bold;">&#40;</span>value == null<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; value = new MutableInt <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; map.<span style="">put</span> <span style="color:#006600; font-weight:bold;">&#40;</span>key, value<span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> else <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; value.<span style="">inc</span> <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Pretty interesting stuff!  Note that the above code snippet is not very cleanly formatted, but you'll get the idea.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devnulled?a=bo8d2wDdsuM:nVeWNPD0ADc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=bo8d2wDdsuM:nVeWNPD0ADc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=bo8d2wDdsuM:nVeWNPD0ADc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=bo8d2wDdsuM:nVeWNPD0ADc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=bo8d2wDdsuM:nVeWNPD0ADc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=bo8d2wDdsuM:nVeWNPD0ADc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=bo8d2wDdsuM:nVeWNPD0ADc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/bo8d2wDdsuM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2009/09/the-most-efficent-way-to-increment-a-map-value-in-java/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2009/09/the-most-efficent-way-to-increment-a-map-value-in-java/</feedburner:origLink></item>
		<item>
		<title>Fixing Remote Desktop in Snow Leopard</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/lOMaHW0Tfeo/</link>
		<comments>http://devnulled.com/content/2009/09/fixing-remote-desktop-in-snow-leopard/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:32:16 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[remote-desktop]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=764</guid>
		<description>After upgrading to Snow Leopard on my MacBook Pro, I only found a couple of minor issues which were easily fixed.  One of them was Microsoft's Remote Desktop Client crashing at startup when I ran it.  Luckily the fix was very simple-- I simply downloaded the latest version from Microsoft and installed it [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/RMaWkAiZYEfORKHl3CnwMI16SX8/0/da"><img src="http://feedads.g.doubleclick.net/~a/RMaWkAiZYEfORKHl3CnwMI16SX8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RMaWkAiZYEfORKHl3CnwMI16SX8/1/da"><img src="http://feedads.g.doubleclick.net/~a/RMaWkAiZYEfORKHl3CnwMI16SX8/1/di" border="0" ismap="true"></img></a></p><p>After upgrading to Snow Leopard on my MacBook Pro, I only found a couple of minor issues which were easily fixed.  One of them was Microsoft's Remote Desktop Client crashing at startup when I ran it.  Luckily the fix was very simple-- I simply downloaded the latest version from Microsoft and installed it again.  If you're having problems with Remote Desktop in Snow Leopard, give it a try!</p>
<p><a href="http://www.microsoft.com/mac/products/remote-desktop/default.mspx">Microsoft Remote Desktop for OS X</a></p>
<p>Alternatively, you can also try downloading CoRD, an open source Remote Desktop Client and installing it.  It seemed to have trouble connecting to my Windows XP workstation for whatever reason, but that doesn't mean it won't work for you of course.</p>
<p><a href="http://cord.sourceforge.net/">CoRD</a></p>
<blockquote><p>
CoRD is a Mac OS X remote desktop client for Microsoft Windows computers using the RDP protocol. It's easy to use, fast, and free for anyone to use or modify.
</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devnulled?a=lOMaHW0Tfeo:H8Q7ANrB6J8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=lOMaHW0Tfeo:H8Q7ANrB6J8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=lOMaHW0Tfeo:H8Q7ANrB6J8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=lOMaHW0Tfeo:H8Q7ANrB6J8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=lOMaHW0Tfeo:H8Q7ANrB6J8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=lOMaHW0Tfeo:H8Q7ANrB6J8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=lOMaHW0Tfeo:H8Q7ANrB6J8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/lOMaHW0Tfeo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2009/09/fixing-remote-desktop-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2009/09/fixing-remote-desktop-in-snow-leopard/</feedburner:origLink></item>
		<item>
		<title>Using Spring and Hibernate With JPA And Entity Interfaces</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/73kcYYPHH00/</link>
		<comments>http://devnulled.com/content/2009/03/using-spring-and-hibernate-with-jpa-and-entity-interfaces/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 23:03:23 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[entity]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[jpa]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=753</guid>
		<description>I'm currently setting up a new Hibernate project and finally getting around to trying out JPA annotations instead of using any Hibernate configuration or mapping files-- what the hell took me so long!!??!  Anyhow, among the many gotchas I came across, one was how to deal with using Interfaces with Hibernate entity beans and [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/IyKEnGkQZejI5UWUNuoYo6VGF1Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/IyKEnGkQZejI5UWUNuoYo6VGF1Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IyKEnGkQZejI5UWUNuoYo6VGF1Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/IyKEnGkQZejI5UWUNuoYo6VGF1Q/1/di" border="0" ismap="true"></img></a></p><p>I'm currently setting up a new Hibernate project and finally getting around to trying out JPA annotations instead of using any Hibernate configuration or mapping files-- what the hell took me so long!!??!  Anyhow, among the many gotchas I came across, one was how to deal with using Interfaces with Hibernate entity beans and associations.  </p>
<p>When you declare an association to a Hibernate Entity with an Interface without using the correct annotation syntax to point Hibernate at the implementing class, you will likely see exceptions like this while running JUnit 4 tests in Eclipse:</p>
<div class="igBar"><span id="lcode-5"><a href="#" onclick="javascript:showCodeTxt('code-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-5">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">java.<span style="">lang</span>.<span style="">IllegalStateException</span>: Failed to load ApplicationContext</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">TestContext</span>.<span style="">getApplicationContext</span><span style="color:#006600; font-weight:bold;">&#40;</span>TestContext.<span style="">java</span>:<span style="color:#800000;color:#800000;">201</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">support</span>.<span style="">DependencyInjectionTestExecutionListener</span>.<span style="">injectDependencies</span><span style="color:#006600; font-weight:bold;">&#40;</span>DependencyInjectionTestExecutionListener.<span style="">java</span>:<span style="color:#800000;color:#800000;">109</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">support</span>.<span style="">DependencyInjectionTestExecutionListener</span>.<span style="">prepareTestInstance</span><span style="color:#006600; font-weight:bold;">&#40;</span>DependencyInjectionTestExecutionListener.<span style="">java</span>:<span style="color:#800000;color:#800000;">75</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">TestContextManager</span>.<span style="">prepareTestInstance</span><span style="color:#006600; font-weight:bold;">&#40;</span>TestContextManager.<span style="">java</span>:<span style="color:#800000;color:#800000;">255</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">junit4</span>.<span style="">SpringJUnit4ClassRunner</span>.<span style="">createTest</span><span style="color:#006600; font-weight:bold;">&#40;</span>SpringJUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">111</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">junit4</span>.<span style="">SpringJUnit4ClassRunner</span>.<span style="">invokeTestMethod</span><span style="color:#006600; font-weight:bold;">&#40;</span>SpringJUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">148</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">JUnit4ClassRunner</span>.<span style="">runMethods</span><span style="color:#006600; font-weight:bold;">&#40;</span>JUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">51</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">JUnit4ClassRunner</span>$<span style="color:#800000;color:#800000;">1</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>JUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">44</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">ClassRoadie</span>.<span style="">runUnprotected</span><span style="color:#006600; font-weight:bold;">&#40;</span>ClassRoadie.<span style="">java</span>:<span style="color:#800000;color:#800000;">27</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">ClassRoadie</span>.<span style="">runProtected</span><span style="color:#006600; font-weight:bold;">&#40;</span>ClassRoadie.<span style="">java</span>:<span style="color:#800000;color:#800000;">37</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">JUnit4ClassRunner</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>JUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">42</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">junit4</span>.<span style="">SpringJUnit4ClassRunner</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>SpringJUnit4ClassRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">97</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">CompositeRunner</span>.<span style="">runChildren</span><span style="color:#006600; font-weight:bold;">&#40;</span>CompositeRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">33</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">runners</span>.<span style="">Suite</span>.<span style="">access</span>$<span style="color:#800000;color:#800000;">000</span><span style="color:#006600; font-weight:bold;">&#40;</span>Suite.<span style="">java</span>:<span style="color:#800000;color:#800000;">26</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">runners</span>.<span style="">Suite</span>$<span style="color:#800000;color:#800000;">1</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>Suite.<span style="">java</span>:<span style="color:#800000;color:#800000;">93</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">ClassRoadie</span>.<span style="">runUnprotected</span><span style="color:#006600; font-weight:bold;">&#40;</span>ClassRoadie.<span style="">java</span>:<span style="color:#800000;color:#800000;">27</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">internal</span>.<span style="">runners</span>.<span style="">ClassRoadie</span>.<span style="">runProtected</span><span style="color:#006600; font-weight:bold;">&#40;</span>ClassRoadie.<span style="">java</span>:<span style="color:#800000;color:#800000;">37</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">junit</span>.<span style="">runners</span>.<span style="">Suite</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>Suite.<span style="">java</span>:<span style="color:#800000;color:#800000;">91</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit4</span>.<span style="">runner</span>.<span style="">JUnit4TestReference</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>JUnit4TestReference.<span style="">java</span>:<span style="color:#800000;color:#800000;">38</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit</span>.<span style="">runner</span>.<span style="">TestExecution</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>TestExecution.<span style="">java</span>:<span style="color:#800000;color:#800000;">38</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit</span>.<span style="">runner</span>.<span style="">RemoteTestRunner</span>.<span style="">runTests</span><span style="color:#006600; font-weight:bold;">&#40;</span>RemoteTestRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">460</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit</span>.<span style="">runner</span>.<span style="">RemoteTestRunner</span>.<span style="">runTests</span><span style="color:#006600; font-weight:bold;">&#40;</span>RemoteTestRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">673</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit</span>.<span style="">runner</span>.<span style="">RemoteTestRunner</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>RemoteTestRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">386</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">eclipse</span>.<span style="">jdt</span>.<span style="">internal</span>.<span style="">junit</span>.<span style="">runner</span>.<span style="">RemoteTestRunner</span>.<span style="">main</span><span style="color:#006600; font-weight:bold;">&#40;</span>RemoteTestRunner.<span style="">java</span>:<span style="color:#800000;color:#800000;">196</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Caused by: org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">BeanCreationException</span>: Error creating bean with name <span style="color:#CC0000;">'geoSessionFactory'</span> defined in class path resource <span style="color:#006600; font-weight:bold;">&#91;</span>com/peerdigital/spring/applicationContext.<span style="">xml</span><span style="color:#006600; font-weight:bold;">&#93;</span>: Invocation of init method failed; nested exception is org.<span style="">hibernate</span>.<span style="">AnnotationException</span>: @OneToOne or @ManyToOne on com.<span style="">peerdigital</span>.<span style="">geolocation</span>.<span style="">model</span>.<span style="">DefaultCountryEntityImpl</span>.<span style="">regionEntity</span> references an unknown entity: com.<span style="">peerdigital</span>.<span style="">geolocation</span>.<span style="">model</span>.<span style="">DefaultRegionEntityImpl</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>.<span style="">initializeBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">1338</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>.<span style="">doCreateBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">473</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>$<span style="color:#800000;color:#800000;">1</span>.<span style="">run</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">409</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at java.<span style="">security</span>.<span style="">AccessController</span>.<span style="">doPrivileged</span><span style="color:#006600; font-weight:bold;">&#40;</span>Native Method<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>.<span style="">createBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">380</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractBeanFactory</span>$<span style="color:#800000;color:#800000;">1</span>.<span style="">getObject</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">264</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">DefaultSingletonBeanRegistry</span>.<span style="">getSingleton</span><span style="color:#006600; font-weight:bold;">&#40;</span>DefaultSingletonBeanRegistry.<span style="">java</span>:<span style="color:#800000;color:#800000;">222</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractBeanFactory</span>.<span style="">doGetBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">261</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractBeanFactory</span>.<span style="">getBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">185</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractBeanFactory</span>.<span style="">getBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">164</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">DefaultListableBeanFactory</span>.<span style="">preInstantiateSingletons</span><span style="color:#006600; font-weight:bold;">&#40;</span>DefaultListableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">423</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">context</span>.<span style="">support</span>.<span style="">AbstractApplicationContext</span>.<span style="">finishBeanFactoryInitialization</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractApplicationContext.<span style="">java</span>:<span style="color:#800000;color:#800000;">728</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">context</span>.<span style="">support</span>.<span style="">AbstractApplicationContext</span>.<span style="">refresh</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractApplicationContext.<span style="">java</span>:<span style="color:#800000;color:#800000;">380</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">support</span>.<span style="">AbstractGenericContextLoader</span>.<span style="">loadContext</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractGenericContextLoader.<span style="">java</span>:<span style="color:#800000;color:#800000;">84</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">support</span>.<span style="">AbstractGenericContextLoader</span>.<span style="">loadContext</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractGenericContextLoader.<span style="">java</span>:<span style="color:#800000;color:#800000;">42</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">TestContext</span>.<span style="">loadApplicationContext</span><span style="color:#006600; font-weight:bold;">&#40;</span>TestContext.<span style="">java</span>:<span style="color:#800000;color:#800000;">173</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">test</span>.<span style="">context</span>.<span style="">TestContext</span>.<span style="">getApplicationContext</span><span style="color:#006600; font-weight:bold;">&#40;</span>TestContext.<span style="">java</span>:<span style="color:#800000;color:#800000;">197</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; ... <span style="color:#800000;color:#800000;">23</span> more</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Caused by: org.<span style="">hibernate</span>.<span style="">AnnotationException</span>: @OneToOne or @ManyToOne on com.<span style="">peerdigital</span>.<span style="">geolocation</span>.<span style="">model</span>.<span style="">DefaultCountryEntityImpl</span>.<span style="">regionEntity</span> references an unknown entity: com.<span style="">peerdigital</span>.<span style="">geolocation</span>.<span style="">model</span>.<span style="">DefaultRegionEntityImpl</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">hibernate</span>.<span style="">cfg</span>.<span style="">ToOneFkSecondPass</span>.<span style="">doSecondPass</span><span style="color:#006600; font-weight:bold;">&#40;</span>ToOneFkSecondPass.<span style="">java</span>:<span style="color:#800000;color:#800000;">81</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">hibernate</span>.<span style="">cfg</span>.<span style="">AnnotationConfiguration</span>.<span style="">processEndOfQueue</span><span style="color:#006600; font-weight:bold;">&#40;</span>AnnotationConfiguration.<span style="">java</span>:<span style="color:#800000;color:#800000;">456</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">hibernate</span>.<span style="">cfg</span>.<span style="">AnnotationConfiguration</span>.<span style="">processFkSecondPassInOrder</span><span style="color:#006600; font-weight:bold;">&#40;</span>AnnotationConfiguration.<span style="">java</span>:<span style="color:#800000;color:#800000;">438</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">hibernate</span>.<span style="">cfg</span>.<span style="">AnnotationConfiguration</span>.<span style="">secondPassCompile</span><span style="color:#006600; font-weight:bold;">&#40;</span>AnnotationConfiguration.<span style="">java</span>:<span style="color:#800000;color:#800000;">309</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">hibernate</span>.<span style="">cfg</span>.<span style="">Configuration</span>.<span style="">buildMappings</span><span style="color:#006600; font-weight:bold;">&#40;</span>Configuration.<span style="">java</span>:<span style="color:#800000;color:#800000;">1148</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">orm</span>.<span style="">hibernate3</span>.<span style="">LocalSessionFactoryBean</span>.<span style="">buildSessionFactory</span><span style="color:#006600; font-weight:bold;">&#40;</span>LocalSessionFactoryBean.<span style="">java</span>:<span style="color:#800000;color:#800000;">673</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">orm</span>.<span style="">hibernate3</span>.<span style="">AbstractSessionFactoryBean</span>.<span style="">afterPropertiesSet</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractSessionFactoryBean.<span style="">java</span>:<span style="color:#800000;color:#800000;">211</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>.<span style="">invokeInitMethods</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">1369</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; at org.<span style="">springframework</span>.<span style="">beans</span>.<span style="">factory</span>.<span style="">support</span>.<span style="">AbstractAutowireCapableBeanFactory</span>.<span style="">initializeBean</span><span style="color:#006600; font-weight:bold;">&#40;</span>AbstractAutowireCapableBeanFactory.<span style="">java</span>:<span style="color:#800000;color:#800000;">1335</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; ... <span style="color:#800000;color:#800000;">39</span> more </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Most of the solutions I saw made you create a duplicate persistence.xml that had all of the same information in it which seemed silly to me.   Eventually with the help of Google I came across the answer somewhere (which I no longer have around) which was to modify the field annotation to point at the class which implements the Interface:</p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showCodeTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">@ManyToOne<span style="color:#006600; font-weight:bold;">&#40;</span>targetEntity = DefaultRegionEntityImpl.<span style="">class</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">@JoinColumn<span style="color:#006600; font-weight:bold;">&#40;</span>name = <span style="color:#CC0000;">"region_code_fk"</span>, referencedColumnName = <span style="color:#CC0000;">"region_code_pk"</span>, insertable = false, updatable = false<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">private RegionEntity regionEntity; </div>
</li>
</ol>
</div>
</div>
</div>
<p> </p>
<p>One other thing to check-- make sure your @Entity annotation is importing the JPA annotation (javax.persistence.Entity), and NOT the Hibernate annotation (org.hibernate.annotations.Entity).  If you import the Hibernate @Entity annotation it will not find the entity bean.</p>
<p>Hopefully that's of some help to someone.  Just a quick post-- back to work I go!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devnulled?a=73kcYYPHH00:Swz2agNW6yk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=73kcYYPHH00:Swz2agNW6yk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=73kcYYPHH00:Swz2agNW6yk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=73kcYYPHH00:Swz2agNW6yk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devnulled?i=73kcYYPHH00:Swz2agNW6yk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=73kcYYPHH00:Swz2agNW6yk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devnulled?a=73kcYYPHH00:Swz2agNW6yk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Devnulled?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/73kcYYPHH00" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2009/03/using-spring-and-hibernate-with-jpa-and-entity-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2009/03/using-spring-and-hibernate-with-jpa-and-entity-interfaces/</feedburner:origLink></item>
		<item>
		<title>How To Install Dig in Ubuntu Linux</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/1a8QI0u-lo8/</link>
		<comments>http://devnulled.com/content/2008/11/how-to-install-dig-in-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 16:26:49 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[dig]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[nslookup]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-linux]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=742</guid>
		<description>One tool I'm used to having without installing (it's included by default in FreeBSD) is Dig (which is short for Domain Information Groper).  Dig is a really handy tool for checking and troubleshooting DNS related issues once you learn how to use it.   For instance, it makes it easy to see how [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/8HyBgpCfyLfPW55tdU_a0HpT2-g/0/da"><img src="http://feedads.g.doubleclick.net/~a/8HyBgpCfyLfPW55tdU_a0HpT2-g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8HyBgpCfyLfPW55tdU_a0HpT2-g/1/da"><img src="http://feedads.g.doubleclick.net/~a/8HyBgpCfyLfPW55tdU_a0HpT2-g/1/di" border="0" ismap="true"></img></a></p><p>One tool I'm used to having without installing (it's included by default in <a href="http://freebsd.org">FreeBSD</a>) is <a href="http://en.wikipedia.org/wiki/Domain_Information_Groper">Dig</a> (which is short for Domain Information Groper).  Dig is a really handy tool for checking and troubleshooting DNS related issues once you learn how to use it.   For instance, it makes it easy to see how your MX records are resolving:</p>
<div class="igBar"><span id="lcode-9"><a href="#" onclick="javascript:showCodeTxt('code-9'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-9">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># dig google.<span style="">com</span> mx</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">; &lt;&lt;&gt;&gt; DiG <span style="color:#800000;color:#800000;">9</span>.<span style="color:#800000;color:#800000;">3</span>.<span style="color:#800000;color:#800000;">2</span>-P2.<span style="color:#800000;color:#800000;">1</span> &lt;&lt;&gt;&gt; google.<span style="">com</span> mx</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; global options:&nbsp; printcmd</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; Got answer:</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: <span style="color:#800000;color:#800000;">41334</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; flags: qr rd ra; QUERY: <span style="color:#800000;color:#800000;">1</span>, ANSWER: <span style="color:#800000;color:#800000;">4</span>, AUTHORITY: <span style="color:#800000;color:#800000;">0</span>, ADDITIONAL: <span style="color:#800000;color:#800000;">0</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; QUESTION SECTION:</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;google.<span style="">com</span>.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="">IN</span>&nbsp; &nbsp; &nbsp; MX</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; ANSWER SECTION:</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">google.<span style="">com</span>.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">10212</span>&nbsp; &nbsp;IN&nbsp; &nbsp; &nbsp; MX&nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">10</span> smtp3.<span style="">google</span>.<span style="">com</span>.</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">google</span>.<span style="">com</span>.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">10212</span>&nbsp; &nbsp;IN&nbsp; &nbsp; &nbsp; MX&nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">10</span> smtp4.<span style="">google</span>.<span style="">com</span>.</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">google</span>.<span style="">com</span>.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">10212</span>&nbsp; &nbsp;IN&nbsp; &nbsp; &nbsp; MX&nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">10</span> smtp1.<span style="">google</span>.<span style="">com</span>.</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="">google</span>.<span style="">com</span>.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color:#800000;color:#800000;">10212</span>&nbsp; &nbsp;IN&nbsp; &nbsp; &nbsp; MX&nbsp; &nbsp; &nbsp; <span style="color:#800000;color:#800000;">10</span> smtp2.<span style="">google</span>.<span style="">com</span>.</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; Query time: <span style="color:#800000;color:#800000;">1</span> msec</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; SERVER: <span style="color:#800000;color:#800000;">208</span>.<span style="color:#800000;color:#800000;">67</span>.<span style="color:#800000;color:#800000;">220</span>.<span style="color:#800000;color:#800000;">220</span>#53<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#800000;color:#800000;">208</span>.<span style="color:#800000;color:#800000;">67</span>.<span style="color:#800000;color:#800000;">220</span>.<span style="color:#800000;color:#800000;">220</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; WHEN: Sat Nov&nbsp; <span style="color:#800000;color:#800000;">8</span> <span style="color:#800000;color:#800000;">02</span>:<span style="color:#800000;color:#800000;">56</span>:<span style="color:#800000;color:#800000;">08</span> <span style="color:#800000;color:#800000;">2008</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">;; MSG SIZE&nbsp; rcvd: <span style="color:#800000;color:#800000;">116</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Luckily this is easy to install, just not terribly intuitive or easy to find as it's not a package known as dig:</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showCodeTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># sudo apt-get install dnsutils </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>That's pretty much it-- you should now be able to use dig!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=Oj7dZRAW"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=PRgStDlz"><img src="http://feeds.feedburner.com/~f/Devnulled?i=PRgStDlz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=uVFiz9EM"><img src="http://feeds.feedburner.com/~f/Devnulled?i=uVFiz9EM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=8OxuVlP0"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=tazy8SPN"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/1a8QI0u-lo8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/11/how-to-install-dig-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/11/how-to-install-dig-in-ubuntu-linux/</feedburner:origLink></item>
		<item>
		<title>All Files Up To Date</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/ca8AZrezbWY/</link>
		<comments>http://devnulled.com/content/2008/10/all-files-up-to-date/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 07:00:10 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[carrington]]></category>
		<category><![CDATA[status update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=726</guid>
		<description>Wow, it's really been quite awhile since I've wrote much regularly, and I hope to start reversing that trend.  Ever since I f'ed up the Wordpress theme I did from scratch I've been pretty unmotivated to do much at this blog.   I've looked through a zillion themes and found pretty glaring flaws [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/TO7uuFvhbyV5kqJcPx9QCK3_qxA/0/da"><img src="http://feedads.g.doubleclick.net/~a/TO7uuFvhbyV5kqJcPx9QCK3_qxA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TO7uuFvhbyV5kqJcPx9QCK3_qxA/1/da"><img src="http://feedads.g.doubleclick.net/~a/TO7uuFvhbyV5kqJcPx9QCK3_qxA/1/di" border="0" ismap="true"></img></a></p><p>Wow, it's really been quite awhile since I've wrote much regularly, and I hope to start reversing that trend.  Ever since I <a href="/content/2008/02/aaannnddd-were-back/">f'ed up the Wordpress theme</a> I did from scratch I've been pretty unmotivated to do much at this blog.   I've looked through a zillion themes and found pretty glaring flaws in all of them, and didn't want to do one from scratch again.   I was browsing around at random over the weekend and came across the new theme you see now, <a href="http://carringtontheme.com/">Carrington</a>, at <a href="http://crowdfavorite.com/">Crowd Favorite</a> (which is local to me).    Next thing you know, I've upgraded all of my blogs to the latest version of Wordpress, and even made this one look good again.   It still needs a little work, but I'm happy so far.   Hats off to Alex King and team at Crowd Favorite by producing a theme good enough to get me interested in my blog again.</p>
<p>At the same time I'm now working at <a href="http://bt.com">BT</a> working on <a href="http://newsroom.cisco.com/dlls/2008/prod_093008d.html">high-end video teleconferencing solutions</a>  which has proved to be a really interesting situation for me-- the business knowledge needed to work in the domain itself is more challenging than becoming fluent in a new programming language.  Coming from a background of working on mostly scalable services meant for website and enterprise consumption, working in a rapidly growing and changing area of telecom has proved to be a welcome new challenge.  We have a lot of really cool stuff rolling around, and I can honestly say some of the stuff I'm working on actually changes peoples lives all across the world in a significant way which is a first for me, and a rare experience as a Software Engineer.</p>
<p>That said, I haven't had many burning topics on my mind in the software space since I've had my brain wrapped around learning how telecom and video conferencing works for the past several months.   I have a couple of personal pet projects I'm working on in my spare time, and if/as they progress, they will provide some fodder for more technical blog posts.</p>
<p>Anyhow, thanks for reading and keeping me in your RSS feeds-- hopefully this will start getting a little more regular again soon.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=gRb1vmQH"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=CalXtSK5"><img src="http://feeds.feedburner.com/~f/Devnulled?i=CalXtSK5" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=03lXKjum"><img src="http://feeds.feedburner.com/~f/Devnulled?i=03lXKjum" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=nQH9C0dM"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=aE86kWLw"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/ca8AZrezbWY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/10/all-files-up-to-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/10/all-files-up-to-date/</feedburner:origLink></item>
		<item>
		<title>An Alternative To Waiting In Line for the iPhone 3G</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/Jijjcc5Gv2Q/</link>
		<comments>http://devnulled.com/content/2008/07/an-alternative-to-waiting-in-line-for-the-iphone-3g/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 13:13:57 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[A Day In The Life Of]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[dfs]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone 3G]]></category>
		<category><![CDATA[order fulfillment]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[samsung blackjack]]></category>

		<guid isPermaLink="false">http://devnulled.com/?p=722</guid>
		<description>I've been on the fence quite awhile about the iPhone.   It's not cheap, it's grossly over-hyped by a very fanatic fan base who seem to overlook it's flaws, and while I'm not a terribly flashy person, there seems to be a stigma about those who own one.   Those things aside, I [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/jCIiBAcCmkPWnlEcyXif6cPB1F0/0/da"><img src="http://feedads.g.doubleclick.net/~a/jCIiBAcCmkPWnlEcyXif6cPB1F0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jCIiBAcCmkPWnlEcyXif6cPB1F0/1/da"><img src="http://feedads.g.doubleclick.net/~a/jCIiBAcCmkPWnlEcyXif6cPB1F0/1/di" border="0" ismap="true"></img></a></p><p>I've been on the fence quite awhile about the <a href="http://www.apple.com/iphone/">iPhone</a>.   It's not cheap, it's grossly over-hyped by a very fanatic fan base who seem to overlook it's flaws, and while I'm not a terribly flashy person, there seems to be a stigma about those who own one.   Those things aside, I finally decided that I've pretty much bought into the Mac platform and OS X workflow, and it only makes sense to extend that by replacing my Samsung Blackjack with an iPhone.  <a href='http://devnulled.com/wp-content/uploads/2008/07/iphone_stock.png'><img src="http://devnulled.com/wp-content/uploads/2008/07/iphone_stock-300x81.png" alt="iPhone 3G Stock in Colorado" title="iPhone 3G Stock in Colorado" width="300" height="81" class="alignleft size-medium wp-image-723" /></a> The addition of 3G network support, ActiveSync, and GPS pretty much sealed the deal for me, though the price still makes me reel a bit.  One of the advantages I saw with owning one is that I would most likely not need to take my laptop with me any longer on non-business trips, which is a pretty big win for me.</p>
<p>If you weren't willing to camp-out for the new iPhone 3G and want one ASAP, it's likely you're in a similar position as me-- calling local Apple Stores and AT&#038;T stores everyday to check to see if any have came in.   It sounds like at many Apple Store locations, as soon as a shipment comes in, a big line forms and if you're lucky you might be able to get one.  The way that Apple and AT&#038;T have handled this situation is truly awful and unprofessional-- none of the people working the floor know when shipments are coming-in, nor is there a way to order an iPhone online, etc.</p>
<p>One option I ended-up opting for was ordering a new iPhone 3G at my local AT&#038;T store through their "direct fulfillment" program.   Basically this boils down to you having a direct order from Apple which will eventually arrive at your local AT&#038;T Store, and you don't get charged for it until it ships.   You get a tracking number and a way to check the status, though so far <a href="http://forums.wireless.att.com/cng/board/message?board.id=apple&#038;thread.id=31997">the results don't look terribly promising</a>.  When I ordered mine the wait time before shipment told to me was 5-10 business days, and lately from what I've read the current quotes are now at 10-20 business days.</p>
<p>I honestly don't know how this is going to end-up considering <a href="http://forums.wireless.att.com/cng/board/message?board.id=apple&#038;thread.id=31997">the HUGE thread about this program</a> happening at the AT&#038;T Forums at the moment, but it is keeping me from being obsessed about trying to snag a phone at the retail locations.</p>
<p>One other tip, if you do opt to go this route, you can <a href="http://www.iphoneconvert.com/att.php">use this site to get an idea about when your order will arrive</a> based on other orders at the same store.  All that you do is enter order ID's close to the last 5 digits of your Order ID and the zip code of store you ordered from, and browse through the orders at your store to see if other people at your AT&#038;T store have got their orders.  It's kind of hard to describe unless you've went through the order process itself, but you can find out more in <a href="http://forums.wireless.att.com/cng/board/message?board.id=apple&#038;thread.id=35276">in this thread</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=bJV4oqUV"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=6xpjhfYZ"><img src="http://feeds.feedburner.com/~f/Devnulled?i=6xpjhfYZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=0nMTyrMc"><img src="http://feeds.feedburner.com/~f/Devnulled?i=0nMTyrMc" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=CQKZiYFU"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=g7z8rxa1"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/Jijjcc5Gv2Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/07/an-alternative-to-waiting-in-line-for-the-iphone-3g/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/07/an-alternative-to-waiting-in-line-for-the-iphone-3g/</feedburner:origLink></item>
		<item>
		<title>A Regular Expression To Proxy Basic ColdFusion Requests</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/dxeqw-mR4xI/</link>
		<comments>http://devnulled.com/content/2008/04/a-regular-expression-to-proxy-basic-coldfusion-requests/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 15:27:56 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[clustering]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[j2ee]]></category>
		<category><![CDATA[jrun]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://devnulled.com/content/2008/04/a-regular-expression-to-proxy-basic-coldfusion-requests/</guid>
		<description>(Note: I'm cleaning up some old drafts which have been sitting around for awhile.)
A couple of years ago while setting-up a new J2EE server cluster using the Implementing Multitier Hardware Load Balancing with ColdFusion MX for J2EE or JRun article, I needed to setup a proxy filter for ColdFusion requests.  Given that the application [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/97Up0q0l5I2GTMDE8eOfKawR5Wg/0/da"><img src="http://feedads.g.doubleclick.net/~a/97Up0q0l5I2GTMDE8eOfKawR5Wg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/97Up0q0l5I2GTMDE8eOfKawR5Wg/1/da"><img src="http://feedads.g.doubleclick.net/~a/97Up0q0l5I2GTMDE8eOfKawR5Wg/1/di" border="0" ismap="true"></img></a></p><p>(Note: I'm cleaning up some old drafts which have been sitting around for awhile.)</p>
<p>A couple of years ago while setting-up a new J2EE server cluster using the <a href="http://www.adobe.com/devnet/coldfusion/j2ee/articles/balancing_j2ee03.html">Implementing Multitier Hardware Load Balancing with ColdFusion MX for J2EE or JRun</a> article, I needed to setup a proxy filter for ColdFusion requests.  Given that the application I was setting up used a context root of /, the proxy rule listed in that article would not work.  Instead, thanks to my former co-worker <a href="http://www.nomachetejuggling.com/">Rod</a>, I now have a regular expression which will redirect all basic requests for ColdFusion:</p>
<div class="igBar"><span id="lcode-14"><a href="#" onclick="javascript:showCodeTxt('code-14'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-14">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">^<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#40;</span>?:\S*.<span style="">cfml</span>?\S*<span style="color:#006600; font-weight:bold;">&#41;</span>|\S*/<span style="color:#006600; font-weight:bold;">&#40;</span>?:\?\S+<span style="color:#006600; font-weight:bold;">&#41;</span>?<span style="color:#006600; font-weight:bold;">&#41;</span>$ </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>This regexp works for the following combinations:</p>
<div class="igBar"><span id="lcode-15"><a href="#" onclick="javascript:showCodeTxt('code-15'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-15">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hello.<span style="">cfm</span>?hello=<span style="color:#800000;color:#800000;">2</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hello/</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">sadfa/</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">dasd/?hello=<span style="color:#800000;color:#800000;">231</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">xo.<span style="">cfm</span>/hello</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hello/dookie.<span style="">cfm</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">dookie/hello.<span style="">cfm</span>?thisvar=dookie</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/ </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And the following requests are not proxied:</p>
<div class="igBar"><span id="lcode-16"><a href="#" onclick="javascript:showCodeTxt('code-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-16">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">/hello.<span style="">html</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hello.<span style="">html</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">hello/hello.<span style="">html</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Obviously these are just basic test cases, but it should leave all CSS, image, JavaScript, etc. type requests to the webserver, and pass on everything else to the app servers.  You would also need to change it to include direct requests for .cfc files if you're doing anything like Flash Remoting, Web Services, etc directly to CFC's.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=UGDgD53O"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=I8yLxpoZ"><img src="http://feeds.feedburner.com/~f/Devnulled?i=I8yLxpoZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=YGse51Dq"><img src="http://feeds.feedburner.com/~f/Devnulled?i=YGse51Dq" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=OPofO2DU"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=PLnNJ0Qn"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/dxeqw-mR4xI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/04/a-regular-expression-to-proxy-basic-coldfusion-requests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/04/a-regular-expression-to-proxy-basic-coldfusion-requests/</feedburner:origLink></item>
		<item>
		<title>How To Fix Sound Problems In Ubuntu 7.10 Gutsy on Dell Computers</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/Hb5DfQ0WfQk/</link>
		<comments>http://devnulled.com/content/2008/04/how-to-fix-sound-problems-in-ubuntu-710-gutsy-on-dell-computers/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 22:22:01 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[dimension e520]]></category>
		<category><![CDATA[e520]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[no sound]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://devnulled.com/content/2008/04/how-to-fix-sound-problems-in-ubuntu-710-gutsy-on-dell-computers/</guid>
		<description>Currently, my main workstation at home is a Dell Dimension E520 which primarily runs Ubuntu 7.10, but I also dual boot into Windows XP for my photography hobby.  One problem I had after upgrading to Ubuntu 7.10 from the default Ubuntu install which the E520 shipped with was getting sound to work.  After [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/PmBogLPw5LZYeMupw--JtrTPqVY/0/da"><img src="http://feedads.g.doubleclick.net/~a/PmBogLPw5LZYeMupw--JtrTPqVY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PmBogLPw5LZYeMupw--JtrTPqVY/1/da"><img src="http://feedads.g.doubleclick.net/~a/PmBogLPw5LZYeMupw--JtrTPqVY/1/di" border="0" ismap="true"></img></a></p><p>Currently, my main workstation at home is a Dell Dimension E520 which primarily runs Ubuntu 7.10, but I also dual boot into Windows XP for my photography hobby.  One problem I had after upgrading to Ubuntu 7.10 from the default Ubuntu install which the E520 shipped with was getting sound to work.  After trying <a href="http://ubuntuforums.org/showthread.php?t=575653&#038;page=2">several solutions in this forum thread</a>, I finally got it working again.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=nqVS7lqe"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=9S5qc4Bf"><img src="http://feeds.feedburner.com/~f/Devnulled?i=9S5qc4Bf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=aiCPUGWe"><img src="http://feeds.feedburner.com/~f/Devnulled?i=aiCPUGWe" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=rc8qLB80"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=l6ex0lew"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/Hb5DfQ0WfQk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/04/how-to-fix-sound-problems-in-ubuntu-710-gutsy-on-dell-computers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/04/how-to-fix-sound-problems-in-ubuntu-710-gutsy-on-dell-computers/</feedburner:origLink></item>
		<item>
		<title>Getting Behind Python: Sun Hires Python &amp; Jython Developers</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/nZPm3mtCROI/</link>
		<comments>http://devnulled.com/content/2008/03/getting-behind-python-sun-hires-python-jython-developers/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 08:02:14 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Disciplines]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby On Rails]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[jvm]]></category>
		<category><![CDATA[jython]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://devnulled.com/content/2008/03/getting-behind-python-sun-hires-python-jython-developers/</guid>
		<description>As both a fan and user of the great technologies Python, and the Sun JVM (primarily via Java),    I was very happy to come across this eWeek article which says that Sun announced the hiring of two key Python engineers. You can read more about the hiring of Ted Leung and Frank [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/tTpDd5Wu8euBLU6BuKaLHI5NxT0/0/da"><img src="http://feedads.g.doubleclick.net/~a/tTpDd5Wu8euBLU6BuKaLHI5NxT0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tTpDd5Wu8euBLU6BuKaLHI5NxT0/1/da"><img src="http://feedads.g.doubleclick.net/~a/tTpDd5Wu8euBLU6BuKaLHI5NxT0/1/di" border="0" ismap="true"></img></a></p><p>As both a fan and user of the great technologies <a href="http://www.python.org/">Python</a>, and the <a href="http://en.wikipedia.org/wiki/Java_Virtual_Machine">Sun JVM</a> (primarily via Java), <img src='http://devnulled.com/wp-content/uploads/2008/03/jython.png' alt='jython.png' hspace="20" vspace="20" align="left" />   I was very happy to come across <a href="http://www.eweek.com/c/a/Application-Development/Sun-Hires-Python-Experts/">this eWeek article</a> which says that Sun announced the hiring of two key Python engineers. You can read more about the <a href="http://www.sauria.com/blog/2008/03/03/the-sun-is-going-to-shine-on-python/">hiring of Ted Leung</a> and <a href="http://fwierzbicki.blogspot.com/2008/02/jythons-future-looking-sunny.html">Frank Wierzbicki</a> at their respective blogs.  </p>
<p>I had pretty much written off <a href="http://www.jython.org/">Jython</a> as being dead quite some time ago, but luckily it has had <a href="http://www.jython.org/Project/news.html">a lot of recent activity</a> and is starting to catch back up with C-Python.  By both hiring key <a href="http://jruby.codehaus.org/">JRuby</a> and Jython developers, it looks like Sun is making sure the JVM stays relevant beyond Java and continues to evolve as what in my opinion is the best option for cross-platform applications.  </p>
<p>Having a long background in <a href="http://www.adobe.com/products/coldfusion/">ColdFusion</a> (an Adobe language which compiles down to Java bytecode and runs on the JVM), I've seen first hand the benefits of moving a language to the JVM, and I look forward to seeing more progress on both JRuby and Jython on the JVM.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=YNpcSL2V"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=VFMDrWIL"><img src="http://feeds.feedburner.com/~f/Devnulled?i=VFMDrWIL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=VtJSyqP5"><img src="http://feeds.feedburner.com/~f/Devnulled?i=VtJSyqP5" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=6xYMRCTH"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=ZRYxHuXk"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/nZPm3mtCROI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/03/getting-behind-python-sun-hires-python-jython-developers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/03/getting-behind-python-sun-hires-python-jython-developers/</feedburner:origLink></item>
		<item>
		<title>How To Display Which Processes Are Using What Ports</title>
		<link>http://feedproxy.google.com/~r/Devnulled/~3/v4CwSsNtJJM/</link>
		<comments>http://devnulled.com/content/2008/02/how-to-display-which-processes-are-using-what-ports/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 08:19:09 +0000</pubDate>
		<dc:creator>Brandon Harper</dc:creator>
				<category><![CDATA[Apache HTTPD]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[JBoss]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tips, Hacks, & Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[port in use]]></category>
		<category><![CDATA[port is in use]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[processes]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[suse]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://devnulled.com/content/2008/02/how-to-display-which-processes-are-using-what-ports/</guid>
		<description>This is just a quick entry on how to see which software is using which ports.  This comes in handy when trying to install an application server, web server, etc, and are getting errors like "port is in use".
Basically in any Unix type derivative such as Linux such (Ubuntu, RedHat, SuSe, etc.), as well [...]</description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/bHjoCWTLX8ID0RRPSVfff3OgTLg/0/da"><img src="http://feedads.g.doubleclick.net/~a/bHjoCWTLX8ID0RRPSVfff3OgTLg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bHjoCWTLX8ID0RRPSVfff3OgTLg/1/da"><img src="http://feedads.g.doubleclick.net/~a/bHjoCWTLX8ID0RRPSVfff3OgTLg/1/di" border="0" ismap="true"></img></a></p><p>This is just a quick entry on how to see which software is using which ports.  This comes in handy when trying to install an application server, web server, etc, and are getting errors like "port is in use".</p>
<p>Basically in any Unix type derivative such as Linux such (Ubuntu, RedHat, SuSe, etc.), as well as Mac OS X, all that you need to type this at the command line:</p>
<div class="igBar"><span id="lcode-18"><a href="#" onclick="javascript:showCodeTxt('code-18'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-18">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">lsof -i </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>I remember there being a couple of commands in Windows which you could do this with, but it's been so long since I've used Windows on a regular basis I honestly don't remember how to do it.  I do know you can use <a href="http://www.microsoft.com/technet/sysinternals/Networking/TcpView.mspx">TCPView</a> to accomplish the same thing, however.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/Devnulled?a=gM5wU2eq"><img src="http://feeds.feedburner.com/~f/Devnulled?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=QGrKkryf"><img src="http://feeds.feedburner.com/~f/Devnulled?i=QGrKkryf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=PA1Gi0Bw"><img src="http://feeds.feedburner.com/~f/Devnulled?i=PA1Gi0Bw" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=yzghGHRM"><img src="http://feeds.feedburner.com/~f/Devnulled?d=50" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/Devnulled?a=YEJ8bHFB"><img src="http://feeds.feedburner.com/~f/Devnulled?d=43" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Devnulled/~4/v4CwSsNtJJM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://devnulled.com/content/2008/02/how-to-display-which-processes-are-using-what-ports/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://devnulled.com/content/2008/02/how-to-display-which-processes-are-using-what-ports/</feedburner:origLink></item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
