<?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>Blog from an ATG Developer</title>
	<atom:link href="http://atgdeveloper.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://atgdeveloper.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 24 Jun 2009 10:47:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='atgdeveloper.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/85afde3345e2bec605ceb7f53d99281b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Blog from an ATG Developer</title>
		<link>http://atgdeveloper.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://atgdeveloper.wordpress.com/osd.xml" title="Blog from an ATG Developer" />
		<item>
		<title>Deleting items in a Map</title>
		<link>http://atgdeveloper.wordpress.com/2009/06/24/deleting-items-in-a-map/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/06/24/deleting-items-in-a-map/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 10:47:54 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Collections]]></category>
		<category><![CDATA[Map]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=125</guid>
		<description><![CDATA[Suppose we want to delete some items from a map based on indices, which is passed as an array. We can&#8217;t delete them by iterating through the array, because each time when we delete an item, the hash map shrinks by one. So the new index will be different from what we expect. We can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=125&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Suppose we want to delete some items from a map based on indices, which is passed as an array. We can&#8217;t delete them by iterating through the array, because each time when we delete an item, the hash map shrinks by one. So the new index will be different from what we expect. We can use the following code to perform the operation without any delays.</p>
<p>public void deleteItemFromMap(String[]  indexArray){<br />
		List beanList = getMap();<br />
		MyBean myBean = null;</p>
<p>		int index = 0;<br />
		int newIndex;</p>
<p>		if(indexArray!=null){<br />
			for (String indexString : indexArray) {<br />
			        newIndex = Integer.parseInt(indexString) &#8211; index;<br />
				myBean = beanList.remove(newIndex);<br />
				if(null != myBean){<br />
					index = index + 1;<br />
				}<br />
			}<br />
		}</p>
<p>	}</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=125&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/06/24/deleting-items-in-a-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>A very good Java Decompiler</title>
		<link>http://atgdeveloper.wordpress.com/2009/06/08/a-very-good-java-decompiler/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/06/08/a-very-good-java-decompiler/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 12:25:32 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Decompiler]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[java decompiler]]></category>
		<category><![CDATA[eclipse plugins]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=118</guid>
		<description><![CDATA[JD&#124;Java Decompiler is one of the best decompiler I have used. Visit them here.
This can be used as a stand alone application as well as an eclipse plugin. This works like achieve application in case of of jar files.
The site url to be used is http://java.decompiler.free.fr/jd-eclipse/update
Need help in installing it in MyEclipse?. Download the word(docx) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=118&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>JD|Java Decompiler is one of the best decompiler I have used. Visit them <a href="http://java.decompiler.free.fr/">here</a>.</p>
<p>This can be used as a stand alone application as well as an eclipse plugin. This works like achieve application in case of of jar files.<br />
The site url to be used is <a href="http://java.decompiler.free.fr/jd-eclipse/update">http://java.decompiler.free.fr/jd-eclipse/update</a></p>
<p>Need help in installing it in MyEclipse?. Download the word(docx) file <a href="http://www.4shared.com/file/110576330/e1d94b28/JD_Eclipse.html">here</a>.</p>
<p>Give it a shot.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=118&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/06/08/a-very-good-java-decompiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>White Space problem in ATG Application</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/22/white-space-problem-in-atg-application/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/22/white-space-problem-in-atg-application/#comments</comments>
		<pubDate>Fri, 22 May 2009 09:11:51 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[ATG]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[dsp]]></category>
		<category><![CDATA[dspel]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=107</guid>
		<description><![CDATA[We had an issue in one of the previous projects. The problem is that the html page getting generated has more white spaces and the resulting html size is too much. We can avoid this thing by modifying the deployment descriptor.
&#60;init-param&#62;
        &#60;param-name&#62;trimSpaces&#60;/param-name&#62;
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=107&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We had an issue in one of the previous projects. The problem is that the html page getting generated has more white spaces and the resulting html size is too much. We can avoid this thing by modifying the deployment descriptor.</p>
<p>&lt;init-param&gt;<br />
        &lt;param-name&gt;trimSpaces&lt;/param-name&gt;<br />
        &lt;param-value&gt;true&lt;/param-value&gt;<br />
&lt;/init-param&gt;</p>
<p>Also we can use the following pattern to reduce white spaces alternatively in dsp pages.</p>
<p>&lt;dspel:page<br />
  &gt;&lt;dspel:droplet name=&#8221;/test&#8221;<br />
    &gt;&lt;dspel:oparam name=&#8221;output&#8221;<br />
      &gt;Name: &lt;dspel:valueof param=&#8221;test&#8221;<br />
    /&gt;&lt;/dspel:oparam<br />
  &gt;&lt;/dspel:droplet<br />
&gt;&lt;/dspel:page&gt;</p>
<p>Another approach is to use JSP comments instead of new lines.</p>
<p>&lt;dspel:page&gt;&lt;%&#8211;<br />
&#8211;%&gt;&lt;dspel:droplet name=&#8221;/test&#8221;&gt;&lt;%&#8211;<br />
	&#8211;%&gt;&lt;dspel:oparam name=&#8221;output&#8221;&gt;&lt;%&#8211;<br />
		&#8211;%&gt;Name: &lt;dspel:valueof param=&#8221;test&#8221;/&gt;&lt;%&#8211;<br />
	&#8211;%&gt;&lt;/dspel:oparam&gt;&lt;%&#8211;<br />
&#8211;%&gt;&lt;/dspel:droplet&gt;&lt;%&#8211;<br />
&#8211;%&gt;&lt;/dspel:page&gt;</p>
<p>NB:- I know the code fragments provided in the topics are very low in readability. Please blame WordPress&#8230;.</p>
<p>Reference:<br />
1. <a href="http://betweengo.com/2008/08/22/trim-white-space-from-jsp/">http://betweengo.com/2008/08/22/trim-white-space-from-jsp/</a><br />
2. <a href="http://www.caucho.com/resin-3.0/jsp/faq.xtp">http://www.caucho.com/resin-3.0/jsp/faq.xtp</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=107&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/22/white-space-problem-in-atg-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>XSS &#8211; Cross Site Scripting Security Issue</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/21/xss-cross-site-scripting-security-issue/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/21/xss-cross-site-scripting-security-issue/#comments</comments>
		<pubDate>Thu, 21 May 2009 11:49:37 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Website Security]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=86</guid>
		<description><![CDATA[Websites get complex day by day with lot of dynamic content to display. So the vulnerability is also proportionate. Cross Site Security Issue is one of them. Let me explain this in terms of what I had faced.
So in an e-Commerce site, we normally have an option to search.  Now we search for a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=86&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Websites get complex day by day with lot of dynamic content to display. So the vulnerability is also proportionate. Cross Site Security Issue is one of them. Let me explain this in terms of what I had faced.</p>
<p>So in an e-Commerce site, we normally have an option to search.  Now we search for a term say &#8220;ffddjkl&#8221; . There is no result associated with that search term. So we display a message indicating that similar to following.</p>
<p>There are no results associated with the term ffddjkl.</p>
<p>Now suppose you have given &lt;EMBED SRC=&#8221;http://www.htmlcodetutorial.com/graphics/sounds/1812over.mid&#8221; AllowScriptAccess=&#8221;always&#8221;&gt;&lt;/EMBED&gt;in the search text field. Obviously there is no results for this term. So we display the the above message, with the new search text. Here comes the vulnerability, when you get the search results page, the midi file gets started to play. So you get the security catch, right?</p>
<p>Here we use the following code segment to display the message.</p>
<p>&lt;fmt:message key=&#8221;resourceBundleKey&#8221;&gt;<br />
     &lt;fmt:param value=&#8221;${param.searchText}&#8221;/&gt;<br />
&lt;/fmt:message&gt;</p>
<p>To avoid the vulnerability, we should have something like this.</p>
<p>&lt;fmt:message key=&#8221;resourceBundleKey&#8221;&gt;<br />
&lt;fmt:param&gt;<br />
&lt;c:out value=&#8221;${param.searchText}&#8221; escapeXml=&#8221;true&#8221;/&gt;<br />
&lt;/fmt:param&gt;<br />
&lt;/fmt:message&gt;</p>
<p>When you have a tag that doesn&#8217;t allow you to set the value by tag body rather than by attribute, use the following.</p>
<p>&lt;c:set var=&#8221;myEscapedVar&#8221; scope=&#8221;page&#8221;&gt;<br />
        &lt;c:out value=&#8221;${param.someRequestParameter}&#8221; escapeXml=&#8221;true&#8221;/&gt;<br />
&lt;/c:set&gt;<br />
&lt;some:tag value=&#8221;${pageScope.myEscapedVar}&#8221;/&gt;</p>
<p>For more information on XSS information, visit the <a href="http://www.cgisecurity.com/xss-faq.html">http://www.cgisecurity.com/xss-faq.html</a><br />
Reference: <a href="http://michaelstudman.com/fullfathomfive/articles/2004/05/31/el-and-cross-site-scripting-attacks-jsp-2-functions-to-the-rescue">http://michaelstudman.com/fullfathomfive/articles/2004/05/31/el-and-cross-site-scripting-attacks-jsp-2-functions-to-the-rescue</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=86&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/21/xss-cross-site-scripting-security-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.htmlcodetutorial.com/graphics/sounds/1812over.mid" length="13437" type="audio/midi" />
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>Encryption in ATG</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/14/encryption-in-atg/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/14/encryption-in-atg/#comments</comments>
		<pubDate>Thu, 14 May 2009 11:39:30 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[ATG]]></category>
		<category><![CDATA[Encryption]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=80</guid>
		<description><![CDATA[The Out of the box implementation uses the MD5 encryption algorithm.  Suppose we need to have some other encryption algorithm over MD5. My requirement was to add SHA-256 over the already encrypted value with MD5. The following are the changes I had done to get it done.
The component which does the encryption is DigestPasswordHasher. We [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=80&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The Out of the box implementation uses the MD5 encryption algorithm.  Suppose we need to have some other encryption algorithm over MD5. My requirement was to add SHA-256 over the already encrypted value with MD5. The following are the changes I had done to get it done.</p>
<p>The component which does the encryption is <strong>DigestPasswordHasher</strong>. We need to override the <em>encryptPassword() </em>method.</p>
<p>The attached is the code fragment used . The copy and paste of the code seems weird. So I am attaching the file.</p>
<p><a href="http://www.4shared.com/file/105290167/1882009c/MyDigestPasswordHasherjava.html">See it here.</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=80&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/14/encryption-in-atg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>ATG User Input Sample Code</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/14/atg-user-input-sample-code/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/14/atg-user-input-sample-code/#comments</comments>
		<pubDate>Thu, 14 May 2009 11:09:32 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[ATG]]></category>
		<category><![CDATA[Learning]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=77</guid>
		<description><![CDATA[The attached file contains the code for getting the user inputs. The jsp file gets the input from user in various forms.
1. Text field
2,. Checkbox
3. Dropdowns
4. Radio buttons
The zip file contains the FormHandler other than the jsp file.
Download it
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=77&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The attached file contains the code for getting the user inputs. The jsp file gets the input from user in various forms.</p>
<p>1. Text field<br />
2,. Checkbox<br />
3. Dropdowns<br />
4. Radio buttons</p>
<p>The zip file contains the FormHandler other than the jsp file.<br />
<a href="http://www.4shared.com/file/105287007/efaddc24/UserInput_ATG.html">Download it</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=77&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/14/atg-user-input-sample-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Help2 &#8211; File system</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/07/linux-help2-file-system/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/07/linux-help2-file-system/#comments</comments>
		<pubDate>Thu, 07 May 2009 13:13:47 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Linux-Unix]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=72</guid>
		<description><![CDATA[
Read more about the file system here.
http://linuxconfig.org/Filesystem_Basics
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=72&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://atgdeveloper.files.wordpress.com/2009/05/directory-filesystem-hierarchy-standard.jpg?w=733&#038;h=676" alt="Linux File System" title="Linux File System" width="733" height="676" class="alignnone size-full wp-image-71" /></p>
<p>Read more about the file system here.<br />
<a href="http://linuxconfig.org/Filesystem_Basics">http://linuxconfig.org/Filesystem_Basics</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=72&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/07/linux-help2-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>

		<media:content url="http://atgdeveloper.files.wordpress.com/2009/05/directory-filesystem-hierarchy-standard.jpg" medium="image">
			<media:title type="html">Linux File System</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Help 1</title>
		<link>http://atgdeveloper.wordpress.com/2009/05/06/linux-help-1/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/05/06/linux-help-1/#comments</comments>
		<pubDate>Wed, 06 May 2009 10:42:16 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Linux-Unix]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=61</guid>
		<description><![CDATA[My Windows Xp system had a virus attack. That was horrible. I lost all of my data.
So started thinking Linux as an alternative. As a first step I had ordered for free CD of Ubuntu. Do it here
The following are the the useful and interesting things I have come across.
Ubuntu Pocket Guide and Reference
http://www.ubuntupocketguide.com/index_main.html
Unique Penguin
http://www.100mb.nl/
Bash [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=61&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My Windows Xp system had a virus attack. That was horrible. I lost all of my data.<br />
So started thinking Linux as an alternative. As a first step I had ordered for free CD of Ubuntu. Do it <a href="https://shipit.ubuntu.com/">here</a></p>
<p>The following are the the useful and interesting things I have come across.</p>
<p><strong>Ubuntu Pocket Guide and Reference</strong><br />
<a href="http://www.ubuntupocketguide.com/index_main.html">http://www.ubuntupocketguide.com/index_main.html</a></p>
<p><strong>Unique Penguin</strong><br />
<a href="http://www.100mb.nl/">http://www.100mb.nl/</a></p>
<p><strong>Bash command index</strong><br />
<a href="http://www.ss64.com/bash/">http://www.ss64.com/bash/</a></p>
<p><strong>Linux Crashed.</strong>( i know its rare, but it happened.)<br />
   Ctrl+Alt+Del won&#8217;t work.</p>
<p>   Find and press <strong>Alt </strong>and <strong>PrtSc</strong> buttons together. Then type <strong>REISUB</strong>,while<br />
   holding the above two buttons. The system will restart.<br />
   <a href="http://en.wikipedia.org/wiki/Magic_SysRq_key">http://en.wikipedia.org/wiki/Magic_SysRq_key</a></p>
<p><strong>Security FAQ</strong><br />
  <a href="http://www.linuxsecurity.com/docs/colsfaq.html">http://www.linuxsecurity.com/docs/colsfaq.html</a></p>
<p><strong>Software Directory for GNOME</strong><br />
 <a href="http://www.gnomefiles.org/">http://www.gnomefiles.org/</a></p>
<p><strong>Popular Live CD List</strong><br />
<a href="http://www.livecdlist.com/?pick=All&amp;sort=Purpose&amp;sm=0">http://www.livecdlist.com/?pick=All&amp;sort=Purpose&amp;sm=0</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=61&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/05/06/linux-help-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
		<item>
		<title>Online System Information</title>
		<link>http://atgdeveloper.wordpress.com/2009/04/24/online-system-information/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/04/24/online-system-information/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 07:58:51 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[system info]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=45</guid>
		<description><![CDATA[Why wasting the hard disk space by downloading applications to get the system information? Try this.
It will fetch a number of properties associated with the system online.
http://www.computerhope.com/cgi-bin/systeminfo.cgi

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=45&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Why wasting the hard disk space by downloading applications to get the system information? Try this.<br />
It will fetch a number of properties associated with the system online.</p>
<p><a href="http://www.computerhope.com/cgi-bin/systeminfo.cgi">http://www.computerhope.com/cgi-bin/systeminfo.cgi</a></p>
<p><img class="alignnone size-medium wp-image-46" title="system_info" src="http://atgdeveloper.files.wordpress.com/2009/04/system_info.jpg?w=300&#038;h=171" alt="system_info" width="300" height="171" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=45&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/04/24/online-system-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>

		<media:content url="http://atgdeveloper.files.wordpress.com/2009/04/system_info.jpg?w=300" medium="image">
			<media:title type="html">system_info</media:title>
		</media:content>
	</item>
		<item>
		<title>Better lighting&#8230;for your computer</title>
		<link>http://atgdeveloper.wordpress.com/2009/04/23/better-lightingfor-your-computer/</link>
		<comments>http://atgdeveloper.wordpress.com/2009/04/23/better-lightingfor-your-computer/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 05:16:52 +0000</pubDate>
		<dc:creator>madhulal</dc:creator>
				<category><![CDATA[Useful Softwares]]></category>
		<category><![CDATA[erganomics]]></category>
		<category><![CDATA[eye protection]]></category>
		<category><![CDATA[f.lux]]></category>

		<guid isPermaLink="false">http://atgdeveloper.wordpress.com/?p=18</guid>
		<description><![CDATA[People are nowadays working on computers for long hours. Health experts say that this can lead to many problems. One of the most affected parts of the human body is eyes. People say the new LCD/TFT monitors are better in comparison with the old CRT monitors. But staring that object for long hours can definitely [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=18&subd=atgdeveloper&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>People are nowadays working on computers for long hours. Health experts say that this can lead to many problems. One of the most affected parts of the human body is eyes. People say the new LCD/TFT monitors are better in comparison with the old CRT monitors. But staring that object for long hours can definitely be harmful, I believe.</p>
<p>Recently I came  across a software(<a href="http://www.stereopsis.com/flux/">f.lux</a>) which helps to adjust the display setting based on the time. I have been trying f.ux for sometime. I feel it wonderful. I would recommend f.lux to anyone who sits in front of computer for long time. Moreover it costs you only few megabytes of hard disk space and some RAM space. </p>
<p><a href="http://www.stereopsis.com/flux/">http://www.stereopsis.com/flux/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/atgdeveloper.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/atgdeveloper.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/atgdeveloper.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/atgdeveloper.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/atgdeveloper.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/atgdeveloper.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/atgdeveloper.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/atgdeveloper.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/atgdeveloper.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/atgdeveloper.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=atgdeveloper.wordpress.com&blog=7419130&post=18&subd=atgdeveloper&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://atgdeveloper.wordpress.com/2009/04/23/better-lightingfor-your-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d9b5be42df0e20e576a1e9e7d1b57940?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">madhulal</media:title>
		</media:content>
	</item>
	</channel>
</rss>