<?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>Hari's thoughts and experiments</title>
	<atom:link href="http://harisree.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://harisree.wordpress.com</link>
	<description>my thoughts and experiments</description>
	<lastBuildDate>Wed, 16 Feb 2011 09:09:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='harisree.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Hari's thoughts and experiments</title>
		<link>http://harisree.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://harisree.wordpress.com/osd.xml" title="Hari&#039;s thoughts and experiments" />
	<atom:link rel='hub' href='http://harisree.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to use PropertyPlaceholderConfigurer</title>
		<link>http://harisree.wordpress.com/2011/01/14/how-to-use-propertyplaceholderconfigurer/</link>
		<comments>http://harisree.wordpress.com/2011/01/14/how-to-use-propertyplaceholderconfigurer/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 18:41:52 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=173</guid>
		<description><![CDATA[org.springframework.beans.factory.config.PropertyPlaceholderConfigurer is a  bean factory post processor. This class can be used , when you want to provide some information to bean  configuration file from external resource(property file). For example most of the time we used to hardcode the database related information directly in the bean configuration file itself. Using PropertyPlaceholderConfigurer we can configure the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=173&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>org.springframework.beans.factory.config.PropertyPlaceholderConfigurer is a  bean factory post processor. This class can be used , when you want to provide some information to bean  configuration file from external resource(property file).<br />
For example most of the time we used to hardcode the database related information directly in the bean configuration file itself. Using PropertyPlaceholderConfigurer we can configure the connection information such a way that, we will give some place holder in the bean configuration file .  Spring container pick up the value for that place holder from an external property file. This is the same concept we use in Ant.</p>
<p><strong>Bean configuration</strong><br />
beanConfig.xml</p>
<p><pre class="brush: xml;">
&lt;bean id=&quot;dataSource&quot; destroy-method=&quot;close&quot;&gt;
 &lt;property name=&quot;driverClassName&quot;&gt;&lt;value&gt;${db.driverClassName}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;url&quot;&gt;&lt;value&gt;${db.url}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;username&quot;&gt;&lt;value&gt;${db.username}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;password&quot;&gt;&lt;value&gt;${db.password}&lt;/value&gt;&lt;/property&gt;
&lt;/bean&gt;
</pre></p>
<p><strong>Property file</strong><br />
Oracle.properties</p>
<p><pre class="brush: css;">

db.driverClassName=oracle.jdbc.driver.OracleDriver
db.url=jdbc:oracle:thin:@db-server:1521:db-schema
db.username=username
db.password=password

</pre></p>
<p><strong>How to configure this property file into  BeanConfig.xml</strong></p>
<p>Simply configure PropertyPlaceholderConfigurer bean like other beans</p>
<p><pre class="brush: xml;">
&lt;bean id=&quot;placeholderConfig&quot; class=&quot;org.springframework.beans.factory.config.PropertyPlaceholderConfigurer&quot;&gt;
 &lt;property name=&quot;location&quot;&gt;&lt;value&gt;Oracle.properties&lt;/value&gt;&lt;/property&gt;
&lt;/bean&gt;
&lt;bean id=&quot;dataSource&quot; destroy-method=&quot;close&quot;&gt;
 &lt;property name=&quot;driverClassName&quot;&gt;&lt;value&gt;${db.driverClassName}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;url&quot;&gt;&lt;value&gt;${db.url}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;username&quot;&gt;&lt;value&gt;${db.username}&lt;/value&gt;&lt;/property&gt;
 &lt;property name=&quot;password&quot;&gt;&lt;value&gt;${db.password}&lt;/value&gt;&lt;/property&gt;
&lt;/bean&gt;
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=173&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2011/01/14/how-to-use-propertyplaceholderconfigurer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>Life@2010</title>
		<link>http://harisree.wordpress.com/2011/01/14/life2010/</link>
		<comments>http://harisree.wordpress.com/2011/01/14/life2010/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 12:29:09 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=169</guid>
		<description><![CDATA[This year lots of beautiful incidents happened in my personal and professional life. In Jan i have joined with Tata Consultancy Service. I got lots of new friends from my current employer  Bhavik, Pradhamesh,Shanthanu..  But carrier wise nothing big is happened , still i got a position as module lead .  Didn&#8217;t get any challenging [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=169&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This year lots of beautiful incidents happened in my personal and professional life. In Jan i have joined with Tata Consultancy Service. I got lots of new friends from my current employer  Bhavik, Pradhamesh,Shanthanu..  But carrier wise nothing big is happened , still i got a position as module lead <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .  Didn&#8217;t get any challenging technical task this year. I believe that, my current employer has  not utilized my innovative talent. But at the end of the appraisal they have given a good rating <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . TCS has rated me Top 10 Developers in 2010.  I doesn&#8217;t write more blogs this year. I will regularly update my blog this year.  Personal point of view.. i am blessed to have a such a good wife.. she has supported me and stand with me some of the critical time of my life.. Rekha i love you..</p>
<p>I am wishing every one a happy new year</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=169&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2011/01/14/life2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>Started Tweeting</title>
		<link>http://harisree.wordpress.com/2010/07/05/started-tweeting/</link>
		<comments>http://harisree.wordpress.com/2010/07/05/started-tweeting/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 09:44:52 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=159</guid>
		<description><![CDATA[Started tweeting&#8230;. i created an account very before.. but now going to be active tweeter&#8230; Or forced to be tweet .. he he.. find me here<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=159&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Started tweeting&#8230;. i created an account very before..<br />
but now going to be active tweeter&#8230; Or forced to be tweet .. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  he he..<br />
find me <a href="http://twitter.com/sreeharips">here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=159&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/07/05/started-tweeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>One more Open source project</title>
		<link>http://harisree.wordpress.com/2010/04/21/one-more-open-source-project/</link>
		<comments>http://harisree.wordpress.com/2010/04/21/one-more-open-source-project/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 16:26:37 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=148</guid>
		<description><![CDATA[I am going to contribute for new open source project java-ws-discovery , this is a cross platform Java implementation of WS-Discovery  specification. WS-Discovery is a Web Service discovery protocol that uses UDP multicast and SOAP/XML to discover new services. Current implementation is written by Magnus. I will be working with him for a new release [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=148&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am going to contribute for new open source project <a href="http://code.google.com/p/java-ws-discovery/">java-ws-discovery</a> , this is a cross platform Java implementation of WS-Discovery  specification. WS-Discovery is a Web Service discovery protocol that uses UDP multicast and SOAP/XML to discover new services. Current implementation is written by Magnus. I will be working with him for a new release based on the new specification.</p>
<p>Thank you Magnus Skjegstad , for making me as a part of this project.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=148&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/04/21/one-more-open-source-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>my current reading</title>
		<link>http://harisree.wordpress.com/2010/04/17/my-current-reading/</link>
		<comments>http://harisree.wordpress.com/2010/04/17/my-current-reading/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 05:39:16 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=141</guid>
		<description><![CDATA[Why should you care what I read? . However, I know that some of you love to read. what i want to say about this book is &#8220;Prepare for an amazing journey where life gets better and better …<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=141&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Why should you care what I read? . However, I know that some of you love to read.<br />
what i want to say about this book is<br />
<strong>&#8220;Prepare for an amazing journey where life gets better and better …</strong></p>
<p><strong><a title="A New Earth" href="http://www.amazon.com/New-Earth-Awakening-Lifes-Purpose/dp/0525948023" target="_blank"><img class="alignleft size-medium wp-image-142" title="newearth" src="http://harisree.files.wordpress.com/2010/04/newearth1.jpg?w=195&#038;h=300" alt="" width="195" height="300" /></a><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=141&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/04/17/my-current-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>

		<media:content url="http://harisree.files.wordpress.com/2010/04/newearth1.jpg?w=195" medium="image">
			<media:title type="html">newearth</media:title>
		</media:content>
	</item>
		<item>
		<title>A special sunday in ashram..</title>
		<link>http://harisree.wordpress.com/2010/02/28/a-special-sunday-in-ashram/</link>
		<comments>http://harisree.wordpress.com/2010/02/28/a-special-sunday-in-ashram/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:53:34 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=134</guid>
		<description><![CDATA[Today Rekha and me went to Nerul Brahmagiri ashram for amma&#8217;s dharshan. Amma, One of the prominent spiritual leader in this century. She is one of the spiritual masters inspired me to search for the spiritual truth. And also met some of my old friends there. My wife and myself had a special dharsan today. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=134&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>   Today Rekha and me went to Nerul Brahmagiri ashram for amma&#8217;s dharshan. Amma, One of the prominent spiritual leader in this century. She is one of the spiritual masters inspired me to search for the spiritual truth. And  also met some of my old friends there. My wife and myself had a special dharsan today. I think this is a special day for my family. Tomorrow is holi so I am wishing you a colourful holi. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=134&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/02/28/a-special-sunday-in-ashram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>I changed my employer</title>
		<link>http://harisree.wordpress.com/2010/02/21/i-changed-my-employer/</link>
		<comments>http://harisree.wordpress.com/2010/02/21/i-changed-my-employer/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 08:51:23 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/2010/02/21/i-changed-my-employer/</guid>
		<description><![CDATA[I have changed my employer due to some  professional issues with my previous employer. I have faced lots of issues there,But I don&#8217;t have anything bad to say about that company and the people who are working there. Because i learned a lot from that company. I hope my new employer is very good and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=133&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have changed my employer due to some  professional issues with my previous employer. I have faced lots of issues there,But I don&#8217;t have anything bad to say about that company and the people who are working there. Because i learned a lot from that company. I hope my new employer is very good and they will give values to my talent and work. I wish all my old Colleagues, who were worked with me . And thanks a lot for the supports you are given me there in difficult situations.. especially to Dhanajay, Srini,..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=133&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/02/21/i-changed-my-employer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>StAX(Streaming API for XML) and Other parsers</title>
		<link>http://harisree.wordpress.com/2010/01/17/staxstreaming-api-for-xml-and-other-parsers/</link>
		<comments>http://harisree.wordpress.com/2010/01/17/staxstreaming-api-for-xml-and-other-parsers/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 10:19:30 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=128</guid>
		<description><![CDATA[To handle xml in java, there are mainly two API were used, DOM and SAX. But now StAX API is also part of java parsing API. Here I am writing some of the differences I found while learnig parsers for writing PojoXML open source project. StAX The main goal of StAX API(http://jcp.org/en/jsr/detail?id=173) is to give [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=128&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To handle xml in java, there are mainly two API were used, DOM and SAX. But now StAX API is also part of java parsing API. Here I am writing some of the differences I found while learnig parsers for writing PojoXML open source project.</p>
<p><strong>StAX</strong><br />
The main goal of StAX  API(http://jcp.org/en/jsr/detail?id=173) is to give &#8220;parsing control to the programmer” by providing a simple iterator based API. This allows the programmer to ask for the next event (pull the event)  ,because of this property StAX is called as pull parser .StAX was created to address limitations in the two most prevalent parsing APIs, SAX and DOM.</p>
<p><strong>DOM  vs SAX vs StAX</strong><br />
DOM creates a fully tree based structure of xml document in the memory and traverse randomly. DOM takes lots of memory.   So its inefficient for processing large xml document.</p>
<p>But SAX parser is more efficient in terms of memory usage. SAX is a streaming  API it parse sequentially when an xml Infoset found it fires events. SAX doesn’t provide random access to xml data. We don’t have control over the xml parsing. When an event(element or attribute or text or CDATA founds) occurs SAX parser send data to your program(Push Parsing).</p>
<p>In case of StAX (Pull Parsing) API we have to call parser API to get next element when we wanted. You can control the parsing from your code. Using Pull parser we can filter xml document, means we can ignore the unnecessary elements. Pull parsing library is smaller than push parser.</p>
<p>When there is memory limitation you should go for streaming API for example cell phone application.<br />
<a href="http://woodstox.codehaus.org/">Woodstox</a> is a StAX implementation.<br />
Which parser you are using?  And How you handles xml parsing in your application</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=128&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/01/17/staxstreaming-api-for-xml-and-other-parsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>something about TDD</title>
		<link>http://harisree.wordpress.com/2010/01/03/something-about-tdd/</link>
		<comments>http://harisree.wordpress.com/2010/01/03/something-about-tdd/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 12:02:29 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=120</guid>
		<description><![CDATA[What is Test Driven Development? This is question asked by one of my friend. Here i am writing my answer for that. Test Driven Development means writing Test Cases first and then developing code. This is best way to achieve a test suit. Its time consuming process, but in my open source project and my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=120&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What is Test Driven Development?<br />
 This is question asked by one of my friend. Here i am writing my answer for that. Test Driven Development means writing Test Cases first and then developing code. This is best way to achieve a test suit. Its time consuming process, but in my open source project and my personal recomendation is to follow Test Driven Development. There are lots of reason i have found for that from the opensource project i have written and i am writing now.</p>
<p>i). Any time you can change the internal structure of the project without changing the functionality. Your test cases  makes sure that your chages is right or wrong.</p>
<p>ii). Writing test cases will makes you to break down the code according to functionality. and ensures that that part is tested succesfully</p>
<p>iii). If a new person, who knows the project partially can add/change the code[no need to worry about wether its effect to other part of project]</p>
<p>iv). Doing TDD we can tell exact persentage of project status.</p>
<p>Some disadvantages are:</p>
<p>i). its boring task, not a creative work</p>
<p>ii) time consuming while following a faster schedule.</p>
<p>iii). Developer must have a good understanding on the automated testing API[JUnit or TestNG,..]</p>
<p>This all are my understandings that i got from books and my experiance.<br />
please reply your comments on this </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=120&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2010/01/03/something-about-tdd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
		<item>
		<title>Life@2009</title>
		<link>http://harisree.wordpress.com/2009/12/27/life2009/</link>
		<comments>http://harisree.wordpress.com/2009/12/27/life2009/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 04:25:50 +0000</pubDate>
		<dc:creator>harisree</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://harisree.wordpress.com/?p=117</guid>
		<description><![CDATA[Another year saying by&#8230; This year i made only few blog Look on personal life,September we made a second honeymoon trip to Mahabaleshwar. Onam we celebrated in kerala. with our whole family. about 10 days we spend in kerala. we went to guruvayur temple and then to Veegaland also. Look on professional view, had a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=117&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another year saying by&#8230;<br />
This year i made only few blog</p>
<p>Look on personal life,September we made a second honeymoon trip to Mahabaleshwar. Onam we celebrated in kerala. with our whole family. about 10 days we spend in kerala. we went to guruvayur temple and then to Veegaland also.</p>
<p>Look on professional view, had a absoutely eventful year. Moved to a different project within in the same company and it is very interesting to roll out the projects in a shorter time frames. Had oppertunity to work in<br />
three different products. In between that lots of good friends left company.  @ December i also resigned from the current employer. and new year is going to start with new company.</p>
<p>Me and my wife wishing you a happy and prosperous new year</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/harisree.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/harisree.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/harisree.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=harisree.wordpress.com&amp;blog=1688080&amp;post=117&amp;subd=harisree&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://harisree.wordpress.com/2009/12/27/life2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55034bc419e0d2e4bf0240d659124433?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harisree</media:title>
		</media:content>
	</item>
	</channel>
</rss>
