<?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>anup&#039;s</title>
	<atom:link href="http://itworld2009.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://itworld2009.wordpress.com</link>
	<description>Some thing that is realy confusing. Please don&#039;t expect something new from this blog and this is just my library where I used to F5 myself...</description>
	<lastBuildDate>Wed, 22 Jul 2009 12:57:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='itworld2009.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>anup&#039;s</title>
		<link>http://itworld2009.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://itworld2009.wordpress.com/osd.xml" title="anup&#039;s" />
	<atom:link rel='hub' href='http://itworld2009.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Spring AOP Basics</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/spring-aop-basics/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/spring-aop-basics/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 12:57:56 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=43</guid>
		<description><![CDATA[BeforeAdvice and AfterReturningAdvice This is a very simple program for invoking the Before Advice and After Returning Advice in the Spring Framework. Thsese two methods are part of Spring&#8217;s AOP implementation and used as interceptor methods. the following program create spring beans using the standalone java program and invokes the business logic method. Business logic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=43&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/spring-aop-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Composite Ids in Hibernate</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/composite-ids-in-hibernate/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/composite-ids-in-hibernate/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 12:39:54 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=41</guid>
		<description><![CDATA[Composite Identifiers are PK identifiers for first-rank classes that consist of more than one column. Scenario: Foo has a primary key that is of type Person. Person is made up of a String name and an Address type. Person Foo.getId()   // PK is multi-column mapped  Hibernate Mapping: In Hibernate, this could be mapped as follows: &#60;class name=&#8221;Foo&#8221; table=&#8221;foo&#8221;&#62;     &#60;composite-id name=&#8221;id&#8221; class=&#8221;Person&#8221;&#62;         &#60;key-property name=&#8221;name&#8221; type=&#8221;string&#8221; column=&#8221;name&#8221;/&#62;         &#60;key-many-to-one name=&#8221;address&#8221; class=&#8221;Address&#8221; column=&#8221;addr_id&#8221;/&#62;     &#60;/composite-id&#62;     &#60;property name=&#8221;age&#8221; column=&#8221;age&#8221; type=&#8221;string&#8221;/&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=41&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/composite-ids-in-hibernate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Transaction Management in Hibernate</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/transaction-management-in-hibernate/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/transaction-management-in-hibernate/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 12:22:30 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=39</guid>
		<description><![CDATA[Transactions Transactions group many operations into a single unit of work. If any operation in the batch fails, all of the previous operations are rolled back, and the unit of work stops. Hibernate can run in many different environments supporting various notions of transactions. Standalone applications and some application servers only support simple JDBC transactions, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=39&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/transaction-management-in-hibernate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Boolean values with Hibernate</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/boolean-values-with-hibernate/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/boolean-values-with-hibernate/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 12:11:43 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=37</guid>
		<description><![CDATA[Hibernate supports three types of booleans: number based (1 or 0), letter based &#8216;y&#8217; &#8216;Y&#8217; or &#8216;N&#8217; &#8216;n&#8217;, and letter based &#8216;t&#8217; &#8216;T&#8217; or &#8216;F&#8217; &#8216;f&#8217;. The real boolean in the real legacy tables is a letter and if u r using a number based boolean you will get the following error in Oracle: Fail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=37&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/boolean-values-with-hibernate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Java annotations&#8230;</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/java-annotations/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/java-annotations/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 12:06:09 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=35</guid>
		<description><![CDATA[Annotations The Java platform has always had various ad hoc annotation mechanisms. For example the transient modifier is an ad hoc annotation indicating that a field should be ignored by the serialization subsystem, and the @deprecated javadoc tag is an ad hoc annotation indicating that the method should no longer be used. As of release [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=35&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/java-annotations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Customer care numbers</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/customer-care-numbers/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/customer-care-numbers/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:55:48 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Cust numbers]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=20</guid>
		<description><![CDATA[ICICI Bank Customer Care Number Bangalore &#8211; 4113 1877 Karnataka &#8211; 98455 78000 For other cities, click here. Phone Banking workflow click here. Citibank Customer Care Number All Citibank customers &#8211; Bangalore &#8211; 2227 2484. For other cities, click here Citibank Suvidha account holders &#8211; Bangalore &#8211; 2227 2265. For other cities, click here CitiBusiness [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=20&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/customer-care-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Junit&#8230;.java&#8217;s TESTER</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/junit-javas-tester/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/junit-javas-tester/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:43:15 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Junit]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=13</guid>
		<description><![CDATA[Junit JUnit is a Java open source project which offers an extremely useful framework for unit testing. In order to make use of JUnit&#8217;s features we must of course be prepared to follow a set of rules. Briefly these are: Put your tests in a class that extends the JUnit-class &#8220;TestCase&#8221;. If your test cases [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=13&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/junit-javas-tester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>It is all about virtual machine</title>
		<link>http://itworld2009.wordpress.com/2009/07/22/it-is-all-about-virtual-machine/</link>
		<comments>http://itworld2009.wordpress.com/2009/07/22/it-is-all-about-virtual-machine/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 11:19:16 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Jvm]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/?p=8</guid>
		<description><![CDATA[Do you know the differenc between JVM,JDK &#38; JRE, if not it is time to&#8230;. JDK (Java Development Kit) Java Developer Kit contains tools needed to develop the Java programs, and JRE to run the programs. The tools include compiler (javac.exe), Java application launcher (java.exe), Appletviewer, etc… Compiler converts java code into byte code. Java [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=8&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/07/22/it-is-all-about-virtual-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>
	</item>
		<item>
		<title>Implementing Security for EJB3 in Jboss</title>
		<link>http://itworld2009.wordpress.com/2009/03/11/implementing-security-for-ejb3-in-jboss/</link>
		<comments>http://itworld2009.wordpress.com/2009/03/11/implementing-security-for-ejb3-in-jboss/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 11:45:00 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Ejb security]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/2009/03/11/implementing-security-for-ejb3-in-jboss/</guid>
		<description><![CDATA[its pretty easy to implement the baaic level of security for ejbs especially ejb3.All we need is, 2 property files in our application class path. users.properties and roles.propertiesin users.properties we will specify the principal name and password,for example users.propertiesanup=welcome123aju=test123 roles.properties will have the role mappings roles.propertiesanup=manager now one important thing is in conf/login-cofig.xml there will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=6&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/03/11/implementing-security-for-ejb3-in-jboss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>

		<media:content url="http://1.bp.blogspot.com/_7yt1_zwU5wI/SbeoiesmyMI/AAAAAAAAABQ/jQ4iJMs5ZGQ/s320/login-config.bmp" medium="image" />
	</item>
		<item>
		<title>Starting with Life Cycle of an EJB &#8230;&#8230;&#8230;</title>
		<link>http://itworld2009.wordpress.com/2009/02/17/starting-with-life-cycle-of-an-ejb/</link>
		<comments>http://itworld2009.wordpress.com/2009/02/17/starting-with-life-cycle-of-an-ejb/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 10:20:00 +0000</pubDate>
		<dc:creator>anupkg</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Ejb life cycle]]></category>

		<guid isPermaLink="false">http://itworld2009.wordpress.com/2009/02/17/starting-with-life-cycle-of-an-ejb/</guid>
		<description><![CDATA[EJB&#8217;s&#8230;The master behind large scale distributed applications and the introducer of component based software development (reusability) is not in any way behind any of the recently evolved technologies&#8230;.. Even though we all know that we are into an era of EJB3 where we don’t have the concept of writing Home,Remote interfaces and it’s the annotations [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=itworld2009.wordpress.com&amp;blog=8680612&amp;post=3&amp;subd=itworld2009&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://itworld2009.wordpress.com/2009/02/17/starting-with-life-cycle-of-an-ejb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/054780552bafccc07c3992b76e0f0acb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">anupkg</media:title>
		</media:content>

		<media:content url="http://2.bp.blogspot.com/_7yt1_zwU5wI/SZqQp4pSNaI/AAAAAAAAAAM/oKX31O-c4uk/s320/lifecycle.gif" medium="image" />
	</item>
	</channel>
</rss>
