<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	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/"
	>

<channel>
	<title>Evolutionary Dawn</title>
	<link>http://blog.evolutionarydawn.com</link>
	<description>I would love to change the world, but they won't give me the source code</description>
	<pubDate>Mon, 29 Jun 2009 21:11:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Glassfish-v2ur2 to Glassfish-2.1 PostgreSQL Migration issue</title>
		<link>http://blog.evolutionarydawn.com/2009/06/29/glassfish-v2ur2-to-glassfish-21-postgresql-migration-issue/</link>
		<comments>http://blog.evolutionarydawn.com/2009/06/29/glassfish-v2ur2-to-glassfish-21-postgresql-migration-issue/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 21:04:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/2009/06/29/glassfish-v2ur2-to-glassfish-21-postgresql-migration-issue/</guid>
		<description><![CDATA[First off let me state I am not sure this is strictly a Glassfish issue.
I recently experienced a issue trying to migrate my application from Glassfish-v2ur2 to Glassfish-2.1.
At first it seemed as if my application ported over just fine by simply installing Glassfish-2.1 and deploying my application.
]]></description>
			<content:encoded><![CDATA[<p>First off let me state I am not sure this is strictly a Glassfish issue.</p>
<p>I recently experienced a issue trying to migrate my application from Glassfish-v2ur2 to Glassfish-2.1.</p>
<p>At first it seemed as if my application ported over just fine by simply installing Glassfish-2.1 and deploying my application.</p>
<p> <a href="http://blog.evolutionarydawn.com/2009/06/29/glassfish-v2ur2-to-glassfish-21-postgresql-migration-issue/#more-27" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2009/06/29/glassfish-v2ur2-to-glassfish-21-postgresql-migration-issue/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Turn off directory listing Glassfish / Tomcat</title>
		<link>http://blog.evolutionarydawn.com/2009/06/29/turning-off-directory-listing-in-your-java-web-app-glassfish/</link>
		<comments>http://blog.evolutionarydawn.com/2009/06/29/turning-off-directory-listing-in-your-java-web-app-glassfish/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 20:11:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/2009/06/29/turning-off-directory-listing-in-your-java-web-app-glassfish/</guid>
		<description><![CDATA[For Glassfish edit the file in the following path:

For Tomcat edit the file in the following path:

]]></description>
			<content:encoded><![CDATA[<p>For Glassfish edit the file in the following path:</p>
<p><a href="http://blog.evolutionarydawn.com/wp-content/uploads/2009/06/picture-4.png" title="picture-4.png"><img src="http://blog.evolutionarydawn.com/wp-content/uploads/2009/06/picture-4.png" alt="picture-4.png" /></a></p>
<p>For Tomcat edit the file in the following path:<br />
<a href="http://blog.evolutionarydawn.com/wp-content/uploads/2009/06/picture-5.png" title="picture-5.png"><img src="http://blog.evolutionarydawn.com/wp-content/uploads/2009/06/picture-5.png" alt="picture-5.png" /></a><br />
 <a href="http://blog.evolutionarydawn.com/2009/06/29/turning-off-directory-listing-in-your-java-web-app-glassfish/#more-23" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2009/06/29/turning-off-directory-listing-in-your-java-web-app-glassfish/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom JSF Component 1.2</title>
		<link>http://blog.evolutionarydawn.com/2009/06/11/custom-jsf-component-12/</link>
		<comments>http://blog.evolutionarydawn.com/2009/06/11/custom-jsf-component-12/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 20:25:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/2009/06/11/custom-jsf-component-12/</guid>
		<description><![CDATA[Since I had a hard time finding a complete solution anywhere online I decided that I would post a simple how-to for a JSF Custom component.
The problem that this component seeks to address is that the &#60;f:verbatim&#62; tag does not work properly in a &#60;ui:repeat&#62; tag.
This presented a issue to me because I have RAW [...]]]></description>
			<content:encoded><![CDATA[<p>Since I had a hard time finding a complete solution anywhere online I decided that I would post a simple how-to for a JSF Custom component.</p>
<p>The problem that this component seeks to address is that the &lt;f:verbatim&gt; tag does not work properly in a &lt;ui:repeat&gt; tag.</p>
<p>This presented a issue to me because I have RAW HTML stored in my data model to be used in my simple blog application.</p>
<p>1. The most confusing thing about JSF Custom components.  YOU NEED 3 SEPERATE CLASSES TO IMPLEMENT A CUSTOM COMPONENT.</p>
<p>Alot of other tutorials will teach you there is a method in which you can use only two classes to accomplish the task, although this is true the most straight forward approach is to use 3 classes to implement your component. <a href="http://blog.evolutionarydawn.com/2009/06/11/custom-jsf-component-12/#more-22" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2009/06/11/custom-jsf-component-12/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IBM x330 Server and IBM 3151 Console</title>
		<link>http://blog.evolutionarydawn.com/2008/04/17/ibm-x330-server-and-ibm-3151-console/</link>
		<comments>http://blog.evolutionarydawn.com/2008/04/17/ibm-x330-server-and-ibm-3151-console/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 05:55:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/2008/04/17/ibm-x330-server-and-ibm-3151-console/</guid>
		<description><![CDATA[Quite a while ago I purchased a IBM x330 server not realizing that I might need a VGA card to install linux on it.  Well turns out I didn&#8217;t need one but it sure would have made life easier.  This post when FINALLY completed will detail the instructions of how to install RedHat [...]]]></description>
			<content:encoded><![CDATA[<p>Quite a while ago I purchased a IBM x330 server not realizing that I might need a VGA card to install linux on it.  Well turns out I didn&#8217;t need one but it sure would have made life easier.  This post when FINALLY completed will detail the instructions of how to install RedHat Linux on a IBM x330 purely through the serial port console.</p>
<p> <a href="http://blog.evolutionarydawn.com/2008/04/17/ibm-x330-server-and-ibm-3151-console/#more-18" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2008/04/17/ibm-x330-server-and-ibm-3151-console/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EJB and Bean Manged Transactions</title>
		<link>http://blog.evolutionarydawn.com/2008/03/24/ejb-and-bean-manged-transactions/</link>
		<comments>http://blog.evolutionarydawn.com/2008/03/24/ejb-and-bean-manged-transactions/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 17:21:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/?p=3</guid>
		<description><![CDATA[So&#8230;. I have been programing EJB 3.0 Systems for about 1 1/2 years now and until recently I never need to manage my own transactions.  Well today I needed to do just that and I had a bit of difficulty finding a tutorial.  After about 2 hours of search I found the following.
Sun [...]]]></description>
			<content:encoded><![CDATA[<p>So&#8230;. I have been programing EJB 3.0 Systems for about 1 1/2 years now and until recently I never need to manage my own transactions.  Well today I needed to do just that and I had a bit of difficulty finding a tutorial.  After about 2 hours of search I found the following.</p>
<p><a href="http://java.sun.com/javaee/5/docs/tutorial/doc/docinfo.html">Sun J2EE Tutorial</a><br />
 <a href="http://blog.evolutionarydawn.com/2008/03/24/ejb-and-bean-manged-transactions/#more-3" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2008/03/24/ejb-and-bean-manged-transactions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JSuggestionPanel (AKA JSuggestionField, CompletionTextField)</title>
		<link>http://blog.evolutionarydawn.com/2008/03/21/suggestionpanel/</link>
		<comments>http://blog.evolutionarydawn.com/2008/03/21/suggestionpanel/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 21:22:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/?p=15</guid>
		<description><![CDATA[Also known as a JTextField that magically have a list appear after you hit ENTER or CompletionTextField.
Since I have not found a open source or version that is purchasable I decided to hack one together today and give it freely to the world.  Hopefully this helps some one.
]]></description>
			<content:encoded><![CDATA[<p>Also known as a JTextField that magically have a list appear after you hit ENTER or CompletionTextField.</p>
<p>Since I have not found a open source or version that is purchasable I decided to hack one together today and give it freely to the world.  Hopefully this helps some one.</p>
<p> <a href="http://blog.evolutionarydawn.com/2008/03/21/suggestionpanel/#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2008/03/21/suggestionpanel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Migrating from JBoss to Glassfish</title>
		<link>http://blog.evolutionarydawn.com/2008/03/21/migrating-from-jboss-to-glassfish/</link>
		<comments>http://blog.evolutionarydawn.com/2008/03/21/migrating-from-jboss-to-glassfish/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 17:22:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/?p=14</guid>
		<description><![CDATA[I recently migrated a J2EE application from JBoss 4.0.4-GA to Glassfish and experienced a number of different issues.
In this post I will describe the issues and the solutions to them in the hopes that it will help solve others headaches.
]]></description>
			<content:encoded><![CDATA[<p>I recently migrated a J2EE application from JBoss 4.0.4-GA to Glassfish and experienced a number of different issues.</p>
<p>In this post I will describe the issues and the solutions to them in the hopes that it will help solve others headaches.</p>
<p> <a href="http://blog.evolutionarydawn.com/2008/03/21/migrating-from-jboss-to-glassfish/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2008/03/21/migrating-from-jboss-to-glassfish/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The wonders of Netbeans and CSV uploads</title>
		<link>http://blog.evolutionarydawn.com/2008/03/09/pgadmin-csv-upload/</link>
		<comments>http://blog.evolutionarydawn.com/2008/03/09/pgadmin-csv-upload/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 01:03:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.evolutionarydawn.com/?p=4</guid>
		<description><![CDATA[For the last few years I have written a few applications to merge and reconcile data in spreadsheets.
As of late I have been doing this in Netbeans 6.0 &#38; PostgresQL 8.1 w/ pgAdmin III.
So I will share with the rest of the world my little tricks for making this easier.
]]></description>
			<content:encoded><![CDATA[<p>For the last few years I have written a few applications to merge and reconcile data in spreadsheets.</p>
<p>As of late I have been doing this in Netbeans 6.0 &amp; PostgresQL 8.1 w/ pgAdmin III.</p>
<p>So I will share with the rest of the world my little tricks for making this easier.</p>
<p> <a href="http://blog.evolutionarydawn.com/2008/03/09/pgadmin-csv-upload/#more-4" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evolutionarydawn.com/2008/03/09/pgadmin-csv-upload/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

