<?xml version="1.0" encoding="UTF-8"?>
<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/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>"The Entity Bean is on vacation."</title>
	<atom:link href="http://gautams.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gautams.wordpress.com</link>
	<description>Notes from the world of J2EE.</description>
	<lastBuildDate>Sat, 14 May 2011 12:01:45 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gautams.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>"The Entity Bean is on vacation."</title>
		<link>http://gautams.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gautams.wordpress.com/osd.xml" title="&#34;The Entity Bean is on vacation.&#34;" />
	<atom:link rel='hub' href='http://gautams.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Apache ANT &#8211; An Introduction And A Few Tips &amp; Tricks</title>
		<link>http://gautams.wordpress.com/2006/03/18/apache-ant-an-introduction-and-a-few-tips-tricks/</link>
		<comments>http://gautams.wordpress.com/2006/03/18/apache-ant-an-introduction-and-a-few-tips-tricks/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 20:25:45 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[Apache Ant]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[How-Tos]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/20//</guid>
		<description><![CDATA[Apache Ant is currently in version 1.6.5 (released on June 2, 2005). I have used Ant since the 1.1.x days and I must say that I fell in love with Ant the day I first downloaded and played with it. And the love endures till this day I remember voting for the official Ant logo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=48&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img alt="Apache Ant Logo" src="http://gautams.files.wordpress.com/2006/03/ANT-project-logo.gif" /><br />
<a target="_blank" href="http://ant.apache.org/"> </a></p>
<p><a target="_blank" href="http://ant.apache.org/">Apache Ant</a> is        currently in version 1.6.5 (released on June 2, 2005). I have used Ant        since the 1.1.x days and I must say that I fell in love with Ant the day        I first downloaded and played with it. And the love endures till this        day <img src="http://gautams.files.wordpress.com/2006/03/sm_smile.gif" />  I remember voting for the official Ant logo in August/September 2001. See the        post by <a target="_blank" href="http://mail-archives.apache.org/mod_mbox/ant-dev/200108.mbox/%3C208C46AF9D86D31188FD006008298C410235D586@nts-049ha-002.interne.impress.de%3E"> Christoph Wilhelms about the vote</a>. And the <a target="_blank" href="http://vote.sparklit.com/poll.spark/593305"> voting results here</a>. I was a part of the ant-user &amp; ant-dev mailing lists        at that time and I had voted for the logo that won!!! <img src="http://gautams.files.wordpress.com/2006/03/sm_biggrin.gif" /></p>
<p>Anyway, enough nostalgia. Lets talk about Ant&#8230;</p>
<p><b>What is Ant?</b></p>
<p>First of all, what is Ant? As the Ant developers say &#8211; Ant is a        Java-based build tool. Okay. So what you say? Well, Ant is a tool that        makes it possible to do routine stuff in a easy, repeatable, &amp; robust        way. Once you have mastered the Ant concepts, how to write Ant scripts        (XML files) and how to make use of the power of Ant, you will be left        wondering how you managed all those tasks before Ant came along! In        fact, I use Ant for a variety of tasks, over and above the software        development related tasks that it is meant for. For example, I use Ant        to generate a search index for this blog and FTP it to the server        everytime I make a post. I use Ant programatically (no build.xml file)        in a lot of my programs where I need common functions like file copy,        ftp, etc. Why reinvent the wheel when Ant is available?</p>
<p><b>Installing &amp; Using Ant</b></p>
<p>Installing Ant is a breeze. Just download the latest binaries from the <a target="_blank" href="http://ant.apache.org/"> Ant web site</a>. You should download the ZIP archive. Unzip the archive to a        convenient folder (I use D:\Java\apache-ant-1.6.5). You will end up with        a folder like in the screen shot below:</p>
<p align="center"><img alt="Apace Ant - Folder Structure" src="http://gautams.files.wordpress.com/2006/03/ANT%20-%20Folder%20Structure.png" /></p>
<p align="center">Figure 1. Apache Ant &#8211; Folder Structure</p>
<p align="left">Note that I have highlighted the <b>bin</b> folder. This has MS Dos        Batch files that you can use to run Ant. We dn&#8217;t have to worry about the        batch files and the commands they contain at this time. I will go over        some of that stuff in a later post because there are a couple of points        that relate to extending Ant with third party Ant Tasks etc.</p>
<p align="left">To run Ant, we need to do two things:</p>
<ul>
<li><b>Set the ANT_HOME Environment Variable</b> &#8211; This will point to the          root folder of your Ant installation. <b>D:\Java\apache-ant-1.6.5</b>          in the case of the screen shot above.</li>
<li><b>Add the Ant BIN folder to the System Path</b> &#8211; Add the BIN folder          to you path. <b>D:\Java\apache-ant-1.6.5\bin</b> in the case of the          screen shot above.</li>
</ul>
<p>That&#8217;s all you need to do to get Ant installed and running.</p>
<p>To test your Ant installation, open a MS-DOS command prompt, change to        any folder of your choice (say <b>D:\</b>) and type <b>ant.bat</b>.You        will see something like the stuff below (figure 2).</p>
<p align="center"><img alt="Apache Ant - The First Test Run" src="http://gautams.files.wordpress.com/2006/03/Ant%20-%20First%20Test%20Run.png" /></p>
<p align="center">Figure 2. Apache Ant &#8211; The First Test Run</p>
<p align="left">This proves that Ant has been properly installed and all the settings we        need are in place. We can now test Ant with a simple build file (we will        cover build files in more detail in subsequent posts).</p>
<p><b>A Simple Build File:</b></p>
<p>Lets write a simple build file and test our Ant installation. At this        time, just <a href="http://www-apps.us.oracle.com/%7Egsatpath/Ant/part1/build.xml"> download this file</a> (right click and select Save As) and save it into a        suitable folder (say <b>D:\AntTest\</b>). Open a MS Dos command window        and change into the folder in which you placed the build.xml file (say        d:\AntTest\). Type <b>ant -verbose</b> in the command prompt. You should        see something like the screen shot below:</p>
<p align="center"><img alt="Apache Ant - The First Test Results" src="http://gautams.files.wordpress.com/2006/03/Ant%20-%20First%20Test%20Run%20Results.png" /></p>
<p align="center">Figure 3. Apache Ant &#8211; First Run Results</p>
<p align="left">Okay, what did we do here? First of all we told Ant to delete the <b>       classes</b> folder under the root folder (<b>D:\AntTest\</b> in this        case). Note that the classes folder did not exist at this time. However        Ant can handle situations like that! Next we tell Ant to create a new <b>       classes</b> folder under the root folder. After that we told Ant to copy        our build file, <b>build.xml</b>, from the root folder to the classes        folder. That&#8217;s it! Short and sweet but it demonstrates that our Ant        installation works.</p>
<p>The screen shot below shows the D:\AntTest\ folder contents after the        test run.</p>
<p align="center"><img alt="Apache Ant - Test folder contents after first test run" src="http://gautams.files.wordpress.com/2006/03/ANT%20-%20First%20Ant%20Test%20-%20After.png" /></p>
<p align="center">Figure 4. Apache Ant &#8211; Test folder contents after first test run</p>
<p align="left">Well, we now have a working Apache Ant installation and have actually        executed a build using Ant. Next we will look at some Ant concepts and        how to write good build files.</p>
<p align="left"><font color="#3399ff"><b> NEXT &#8211; Ant Concepts, Build Files.</b></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=48&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/18/apache-ant-an-introduction-and-a-few-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/ANT-project-logo.gif" medium="image">
			<media:title type="html">Apache Ant Logo</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/sm_smile.gif" medium="image" />

		<media:content url="http://gautams.files.wordpress.com/2006/03/sm_biggrin.gif" medium="image" />

		<media:content url="http://gautams.files.wordpress.com/2006/03/ANT%20-%20Folder%20Structure.png" medium="image">
			<media:title type="html">Apace Ant - Folder Structure</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Ant%20-%20First%20Test%20Run.png" medium="image">
			<media:title type="html">Apache Ant - The First Test Run</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Ant%20-%20First%20Test%20Run%20Results.png" medium="image">
			<media:title type="html">Apache Ant - The First Test Results</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/ANT%20-%20First%20Ant%20Test%20-%20After.png" medium="image">
			<media:title type="html">Apache Ant - Test folder contents after first test run</media:title>
		</media:content>
	</item>
		<item>
		<title>HOW-TO : Installing Apache Tomcat 5.5</title>
		<link>http://gautams.wordpress.com/2006/03/17/how-to-installing-apache-tomcat-55/</link>
		<comments>http://gautams.wordpress.com/2006/03/17/how-to-installing-apache-tomcat-55/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 17:21:56 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[How-Tos]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/17/how-to-installing-apache-tomcat-55/</guid>
		<description><![CDATA[Apache Tomcat is probably the best J2EE server to use for learning and as a testbed. It is small, fast, robust and most importantly easy to manage. I have used Tomcat since the 3.0 days and thought I would share a few things as a set of How-Tos/Tutorials/Notes. Tomcat has now matured and moved out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=49&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apache Tomcat is probably the best J2EE server to use for learning and        as a testbed. It is small, fast, robust and most importantly easy to        manage. I have used Tomcat since the 3.0 days and thought I would share        a few things as a set of How-Tos/Tutorials/Notes.</p>
<p>Tomcat has now matured and moved out of the Jakarta umbrella. It has        it&#8217;s own project web site at <a target="_blank" href="http://tomcat.apache.org/">http://tomcat.apache.org</a>.        At this writing the last milestone release of the Tomcat 5.5.x series is        5.5.16. We will use this version as our base for this discussion.</p>
<p><b>Downloading &amp; Installation: </b></p>
<p>The first thing to do is to download Tomcat. Tomcat binaries come in a        number of packaging flavors The Windows Installer package is the most        convenient You will find the download page links on the <a target="_blank" href="http://tomcat.apache.org/">Tomcat        home page</a>. You will also need the <a target="_blank" href="http://java.sun.com/j2se/1.5.0/download.jsp">1.5        JDK from Sun</a>.</p>
<p>To install Tomcat, execute the downloaded file. I suggest you pick the        Full option in the Choose Components installer screen. This will dump        everything, including examples and sample web applications.</p>
<p align="center"><img alt="Tomcat Installation - Choose Components" src="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-ChooseComps.png" /></p>
<p align="center">Figure 1. Tomcat Installation &#8211; Choose Components</p>
<p align="left">The installer will now prompt you for the disk location. I suggest you        select something simpler than the default (C:\Program Files\Apache        Software Foundation\Tomcat 5.5). D:\Tomcat5.5 will do just fine and will        be easier to handle latter when we write ANT scripts to manage Tomcat        and deploy web apps into it.</p>
<p align="center"><img alt="Tomcat Installation - Choose Install Location" src="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-ChooseInstallLoc.png" /></p>
<p align="center">Figure 2. Tomcat Installation &#8211; Choose Install Location</p>
<p align="left">On the next screen you need to provide some configuration information.        Note that these are important. You should make a note of what you enter        here. However, do note that all of these can be changed later by        modifying the Tomcat configuration files.</p>
<p align="center"><img alt="Tomcat Installation - Configuration" src="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-Configuration.png" /></p>
<p align="center">Figure 3. Tomcat Installation &#8211; Configuration</p>
<p align="left">The last step before the installation starts is to specify the JDK        Tomcat will use. NOTE: It is very important that you specify a JDK        installation and NOT a JRE installation in this step. Tomcat will not        work with a JRE. It needs access to the compilation and other tools that        are available only in the JDK. Most probably the installer will pick        your JRE installation. Remember to change it to your JDK installation.        Also note that you will need JDK 1.5.</p>
<p align="center">
<p align="center"><img alt="Tomcat Installation - JVM Selection" src="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-JVM.png" /></p>
<p align="center">Figure 4. Tomcat Installation &#8211; JVM Selection</p>
<p align="left">Now you are ready to complete the installation. Click the Install button        to start.</p>
<p align="left">During the installation, the Tomcat Windows Service will be installed.        We will come back to that in a little while. After the installation you        will get the following top level forder structure.</p>
<p align="center"><img alt="Tomcat 5.5 Folder Structure." src="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-FolderStructure.png" /></p>
<p align="center">Figure 5. Tomcat 5.5 Folder Structure.</p>
<p align="left">This structure looks similar to the Tomcat 4.x structure but there are        many differences deeper down. A lot of things have been simplified.</p>
<p align="left">Note that you will have to keep stopping and restarting your Tomcat        server many times during the day. This means the Tomcat Windows Service        is more of a pain than help. I suggest you change the service setting to        Manual from the default Automatic Startup Type.</p>
<p align="center"><img alt="Tomcat Windows Service Properties" src="http://gautams.files.wordpress.com/2006/03/Tomcat-WindowsService.png" /></p>
<p align="center">Figure 6. Tomcat Windows Service Properties</p>
<p align="left">Tomcat 5.5 has another neat feature. A Tray server monitor program!</p>
<p align="center"><img alt="Tomcat Monitor Tray Icon" src="http://gautams.files.wordpress.com/2006/03/Tomcat-MonitorTrayIcon.png" /></p>
<p align="center">Figure 7. Tomcat Monitor Tray Icon</p>
<p align="center"><img alt="Tomcat Monitor Popup Menu" src="http://gautams.files.wordpress.com/2006/03/Tomcat-MonitorPopupMenu.png" /></p>
<p align="center">Figure 8. Tomcat Monitor Popup Menu</p>
<p align="left">You can control the Tomcat service from the Configure menu item. This        brings up the Apache Tomcat Propertes Screen in which you can control a        whole host of stuff like the service startup type, Log level &amp; folder,        the JVM, classpath &amp; Java command line options, startup &amp; shutdown        settings.</p>
<p align="center"><img alt="Tomcat Configuration Screen" src="http://gautams.files.wordpress.com/2006/03/Tomcat-ConfigurationScreen.png" /></p>
<p align="center">Figure 9. Tomcat Configuration Screen</p>
<p align="left">As you can see, changing the startup type to Manual actually helps us.        We have this nifty little server monitor program that runs in the tray.        As a result starting &amp; stopping the server is a snap!</p>
<p align="left">
<p align="left"><b>Running for the First Time:</b></p>
<p align="left">Now it is time to fire up Tomcat for the first time. Use the Tomcat        Monitor to start the server instance. Then use your favorite browser        (Firefox of course!) and point it to <a target="_blank" href="http://localhost:9000/">http://localhost:9000/</a>.Change        the port to whatever you spcified above. You should see the page in the        screen shot below:</p>
<p align="center"><img alt="Tomcat Default Page" src="http://gautams.files.wordpress.com/2006/03/TomcatHomeScreen.png" /></p>
<p align="center">Figure 10. Tomcat Default Page</p>
<p align="left">
<p align="left">Congratulations! You now have a working Tomcat 5.5 installation!</p>
<p align="left">Play around with the various examples etc. We will cover Tomcat Server        Configuration, Administration and Management next.</p>
<p align="left"><font color="#3366ff"><b>NEXT : Tomcat Configuration (Server.xml,        Contexts &amp; Logging)</b></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=49&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/17/how-to-installing-apache-tomcat-55/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-ChooseComps.png" medium="image">
			<media:title type="html">Tomcat Installation - Choose Components</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-ChooseInstallLoc.png" medium="image">
			<media:title type="html">Tomcat Installation - Choose Install Location</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-Configuration.png" medium="image">
			<media:title type="html">Tomcat Installation - Configuration</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-JVM.png" medium="image">
			<media:title type="html">Tomcat Installation - JVM Selection</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-Installation-FolderStructure.png" medium="image">
			<media:title type="html">Tomcat 5.5 Folder Structure.</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-WindowsService.png" medium="image">
			<media:title type="html">Tomcat Windows Service Properties</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-MonitorTrayIcon.png" medium="image">
			<media:title type="html">Tomcat Monitor Tray Icon</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-MonitorPopupMenu.png" medium="image">
			<media:title type="html">Tomcat Monitor Popup Menu</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/Tomcat-ConfigurationScreen.png" medium="image">
			<media:title type="html">Tomcat Configuration Screen</media:title>
		</media:content>

		<media:content url="http://gautams.files.wordpress.com/2006/03/TomcatHomeScreen.png" medium="image">
			<media:title type="html">Tomcat Default Page</media:title>
		</media:content>
	</item>
		<item>
		<title>JSF Resources</title>
		<link>http://gautams.wordpress.com/2006/03/17/jsf-resources/</link>
		<comments>http://gautams.wordpress.com/2006/03/17/jsf-resources/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 14:40:24 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/20//</guid>
		<description><![CDATA[James Holmes has a great page with tons of JSF resources. Check it out!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=47&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>James Holmes has a great page with tons of <a target="_blank" href="http://www.jamesholmes.com/JavaServerFaces/"> JSF resources</a>. Check it out!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=47&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/17/jsf-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>
	</item>
		<item>
		<title>Another Struts Link</title>
		<link>http://gautams.wordpress.com/2006/03/17/another-struts-link/</link>
		<comments>http://gautams.wordpress.com/2006/03/17/another-struts-link/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 13:30:58 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/20//</guid>
		<description><![CDATA[What is Struts &#8211; An article by Chuck Cavaness from OnJava.com &#8211; Slightly dated but good nontheless. A all-in-one printable page version of this article.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=46&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.onjava.com/pub/a/onjava/2005/11/02/what-is-struts.html"> What is Struts</a> &#8211; An article by Chuck Cavaness from <a target="_blank" href="http://www.onjava.com/"> OnJava.com</a> &#8211; Slightly dated but good nontheless. A <a target="_blank" href="http://www.onjava.com/lpt/a/6256"> all-in-one printable page version</a> of this article.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=46&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/17/another-struts-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>
	</item>
		<item>
		<title>Struts &#8211; A Few Links</title>
		<link>http://gautams.wordpress.com/2006/03/17/struts-a-few-links/</link>
		<comments>http://gautams.wordpress.com/2006/03/17/struts-a-few-links/#comments</comments>
		<pubDate>Fri, 17 Mar 2006 13:04:34 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/20//</guid>
		<description><![CDATA[This post contains a few Struts related links. Keep checking back for updates. Apache Struts Home Page Struts Console &#8211; A free, standalone Java application for developing and managing Struts based applications. Really neat. Give it a whril. Ted Husted&#8217;s Struts Page - Struts 1.2 Tutorial &#38; Training Material Mailing Lists &#8211; Struts-Users &#38; Struts [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=45&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post contains a few Struts related links. Keep checking back for        updates.</p>
<ul>
<li><a target="_blank" href="http://struts.apache.org/">Apache Struts Home          Page</a></li>
<li><a target="_blank" href="http://www.jamesholmes.com/struts/console/">         Struts Console</a> &#8211; A free, standalone Java application for          developing and managing Struts based applications. Really neat. Give          it a whril.</li>
<li><a target="_blank" href="http://husted.com/struts/">Ted Husted&#8217;s          Struts Page</a> -</li>
<li><a target="_blank" href="http://courses.coreservlets.com/Course-Materials/struts.html"> Struts 1.2 Tutorial &amp; Training Material</a></li>
<li>Mailing Lists &#8211; <a target="_blank" href="http://www.mail-archive.com/struts-user@jakarta.apache.org/"> Struts-Users</a> &amp; <a target="_blank" href="http://www.mail-archive.com/struts-dev@jakarta.apache.org/"> Struts &#8211; Dev</a></li>
<li><a target="_blank" href="http://www.planetstruts.org/roller/">Planet          Struts</a> &#8211; Source for News &amp; Announcements about Apache Struts</li>
<li><a target="_blank" href="http://www.husted.com/central/Resources/">         Struts Central</a> &#8211; Collection of links to Apache Struts related          resources, articles, books, extensions etc.</li>
</ul>
<p>That&#8217;s it for now. Will add more recommendations as time permits.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=45&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/17/struts-a-few-links/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>
	</item>
		<item>
		<title>J2EE Articles, How-Tos, Tutorials &amp; Notes</title>
		<link>http://gautams.wordpress.com/2006/03/17/j2ee-articles-how-tos-tutorials-notes/</link>
		<comments>http://gautams.wordpress.com/2006/03/17/j2ee-articles-how-tos-tutorials-notes/#comments</comments>
		<pubDate>Thu, 16 Mar 2006 19:00:05 +0000</pubDate>
		<dc:creator>Gautam Satpathy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://gautams.wordpress.com/2006/03/17/j2ee-articles-how-tos-tutorials-notes/</guid>
		<description><![CDATA[I am planning to write a series of articles about J2EE technologies &#38; tools. These will be in the form of How-Tos, Tutorials, Notes, Tips &#38; Tricks etc. I plan to cover the following in the next week or so: Apache Tomcat &#8211; Installation, Management, Administration, Deployment, Tips &#38; Tricks. Apache ANT &#8211; Tutorials on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=44&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am planning to write a series of articles about J2EE technologies &amp;        tools. These will be in the form of How-Tos, Tutorials, Notes, Tips &amp;        Tricks etc. I plan to cover the following in the next week or so:</p>
<ul>
<li><b>Apache Tomcat</b> &#8211; Installation, Management, Administration,          Deployment, Tips &amp; Tricks.</li>
<li><b>Apache ANT</b> &#8211; Tutorials on ANT Scripting, Tips &amp; Tricks</li>
<li><b>Apache Struts</b> &#8211; Tutorials, Notes, Trips &amp; tricks</li>
<li><b>Misc Tools/APIs like Log4J, Java Logging API, JUnit:</b> Tutorials,          Notes, Tips &amp; Tricks.</li>
</ul>
<p>If you would like to see any other topic covered here in the next week        or so, please add a comment.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gautams.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gautams.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gautams.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gautams.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gautams.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gautams.wordpress.com&amp;blog=156534&amp;post=44&amp;subd=gautams&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gautams.wordpress.com/2006/03/17/j2ee-articles-how-tos-tutorials-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a6b6ee8ec774509560ff03d8f8dc0c80?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gautams</media:title>
		</media:content>
	</item>
	</channel>
</rss>
