<?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/"
	>

<channel>
	<title>TechArtifact &#187; Tips</title>
	<atom:link href="http://www.techartifact.com/blogs/tag/tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techartifact.com/blogs</link>
	<description>Techie blog</description>
	<lastBuildDate>Sat, 03 Jul 2010 08:11:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using Collections.copy for list</title>
		<link>http://www.techartifact.com/blogs/2010/03/using-collections-copy-for-list.html</link>
		<comments>http://www.techartifact.com/blogs/2010/03/using-collections-copy-for-list.html#comments</comments>
		<pubDate>Sun, 14 Mar 2010 21:56:17 +0000</pubDate>
		<dc:creator>Java bug</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[code example]]></category>
		<category><![CDATA[Collections]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=921</guid>
		<description><![CDATA[Using java Collections to copy array list I have seen lot&#8217;s of people using Collections.copy and most of times you see this error on console Exception in thread &#34;main&#34; java.lang.IndexOutOfBoundsException: Source does not fit in dest. Normally we use following code to copy an array-list ArrayList&#60;String&#62; items = new ArrayList&#60;String&#62;(); items.add(&#34;item 1&#34;); items.add(&#34;item 2&#34;); items.add(&#34;item [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2010/03/using-collections-copy-for-list.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dealing with Multiple Outlook profiles</title>
		<link>http://www.techartifact.com/blogs/2009/06/dealing-with-multiple-outlook-profiles.html</link>
		<comments>http://www.techartifact.com/blogs/2009/06/dealing-with-multiple-outlook-profiles.html#comments</comments>
		<pubDate>Sun, 21 Jun 2009 21:12:55 +0000</pubDate>
		<dc:creator>Umesh Mehra</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Common]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=719</guid>
		<description><![CDATA[Recently I was on client site of one of my companies prestigious client for the gathering of some new business requirement and understanding of their existing work model. I faced a typical yet very common problem which i think most of you have faced on your clientele&#8217; visit. Dealing with multiple outlook profiles specially when [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/06/dealing-with-multiple-outlook-profiles.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Jetspeed2 Statistics Engine</title>
		<link>http://www.techartifact.com/blogs/2009/02/jetspeed2-statistics-engine.html</link>
		<comments>http://www.techartifact.com/blogs/2009/02/jetspeed2-statistics-engine.html#comments</comments>
		<pubDate>Wed, 25 Feb 2009 21:20:44 +0000</pubDate>
		<dc:creator>Java bug</dc:creator>
				<category><![CDATA[Jetspeed2]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=66</guid>
		<description><![CDATA[Jetspeed 2 has inbuilt feature of statics, statics engine track all the portlet, pages and users. All this information stored in database. so can be access and used any time. statics engine keep track of Number of time served Max time taken in executing page/portlet Avg time taken in executing page/portlet Min time taken in [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/02/jetspeed2-statistics-engine.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Forget password in Jetspeed2</title>
		<link>http://www.techartifact.com/blogs/2009/02/configure-forget-password-in-jetspeed2.html</link>
		<comments>http://www.techartifact.com/blogs/2009/02/configure-forget-password-in-jetspeed2.html#comments</comments>
		<pubDate>Wed, 25 Feb 2009 20:58:38 +0000</pubDate>
		<dc:creator>Java bug</dc:creator>
				<category><![CDATA[Jetspeed2]]></category>
		<category><![CDATA[Open Portal]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.techartifact.com/blogs/?p=59</guid>
		<description><![CDATA[In Jetspeed 2 portal registered users can retrieve there password using via email. In lot of instance portal administrator doesn&#8217;t configure mail server properly, Which causes this problem. Portal Administrator should fill following configuration in administration.xm under (WEB-INF/assembly/) to enable mail sending from jetspeed 2 &#60;beans&#62; &#60;bean id=&#34;mailSender&#34; class=&#34;org.springframework.mail.javamail.JavaMailSenderImpl&#34;&#62; &#60;property name=&#34;host&#34;&#62;&#60;value&#62;localhost&#60;/value&#62;&#60;/property&#62; &#60;property name=&#34;username&#34;&#62;&#60;value&#62;&#60;/value&#62;&#60;/property&#62; &#60;property name=&#34;password&#34;&#62;&#60;value&#62;&#60;/value&#62;&#60;/property&#62; [...]]]></description>
		<wfw:commentRss>http://www.techartifact.com/blogs/2009/02/configure-forget-password-in-jetspeed2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
