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

<channel>
	<title>Reffos</title>
	<atom:link href="http://www.reffos.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reffos.com/blog</link>
	<description></description>
	<pubDate>Thu, 17 Jul 2008 15:35:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Please donate to Andrii Nikitin&#8217;s (MySQL engineer) son Ivan</title>
		<link>http://www.reffos.com/blog/general/please-donate-to-andrii-nikitins-mysql-engineer-son-ivan/</link>
		<comments>http://www.reffos.com/blog/general/please-donate-to-andrii-nikitins-mysql-engineer-son-ivan/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 15:33:10 +0000</pubDate>
		<dc:creator>krishna</dc:creator>
		
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/uncategorized/please-donate-to-andrii-nikitins-mysql-engineer-son-ivan/</guid>
		<description><![CDATA[Please donate to Andrii Nikitin&#8217;s (MySQL engineer) son Ivan. Donations are requested to help Andrii Nikitin, a MySQL support engineer in Ukraine, provide for his son Ivan who requires a bone marrow transplant operation.  The cost of this operation is expected to be between €150,000 - €250,000 ($235,000 - $400,000).  Please help us [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/general/please-donate-to-andrii-nikitins-mysql-engineer-son-ivan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Personalized Calendar from Printo.in</title>
		<link>http://www.reffos.com/blog/general/personalized-calendar-from-printoin/</link>
		<comments>http://www.reffos.com/blog/general/personalized-calendar-from-printoin/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 14:02:51 +0000</pubDate>
		<dc:creator>krishna</dc:creator>
		
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/uncategorized/personalized-calendar-from-printoin/</guid>
		<description><![CDATA[Last week, I shopped online for the first time. I want to make a photo calendar. I tried with iPhoto on Mac, but have to order prints from US. So I looked for a provider in India and came across printo.in
Printo is printing services located in Bangalore. They have a pretty decent site to order [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/general/personalized-calendar-from-printoin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spring vs EJB3</title>
		<link>http://www.reffos.com/blog/java/spring-vs-ejb3/</link>
		<comments>http://www.reffos.com/blog/java/spring-vs-ejb3/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 17:11:11 +0000</pubDate>
		<dc:creator>krishna</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/java/spring-vs-ejb3/</guid>
		<description><![CDATA[I am looking at using Spring and EJB3 in a application. There are few blog entries &#38; presentations debating on either Spring or EJB3 case. I prefer to be in EJB3(session beans) + JPA for persistence configured in Spring container camp.
Some resources are below
http://www.devx.com/Java/Article/32314/0/page/1
A comparative analysis of Spring vs EJB3 by EJB3 in Action author [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/java/spring-vs-ejb3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mobile Application Development contest</title>
		<link>http://www.reffos.com/blog/mobile/mobile-application-development-contest/</link>
		<comments>http://www.reffos.com/blog/mobile/mobile-application-development-contest/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 15:13:16 +0000</pubDate>
		<dc:creator>krishna</dc:creator>
		
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/mobile/mobile-application-development-contest/</guid>
		<description><![CDATA[Reliance Communications has announced Rural Mobile Application Development Contest. I got a mailer from them with lot of images and only images. It is not even hyperlinked and the site name is in a small font at the bottom. It doesn&#8217;t look professional coming from a big company like Reliance.
Anyways, after some searching, here is [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/mobile/mobile-application-development-contest/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spring+JPA with Hibernate</title>
		<link>http://www.reffos.com/blog/java/springjpa-with-hibernate/</link>
		<comments>http://www.reffos.com/blog/java/springjpa-with-hibernate/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 08:04:23 +0000</pubDate>
		<dc:creator>krishna</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/uncategorized/springjpa-with-hibernate/</guid>
		<description><![CDATA[This is a sample of using Spring 2.5 with JPA provided by Hibernate 3.2.
This is the model class Trip.java


package sample.model;import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Id;
import javax.persistence.GeneratedValue;
import javax.persistence.Column;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;import java.util.Date;

@Entity
@Table(name = "trips")
@NamedQueries({
@NamedQuery(name="Trip.allTrips", query="from Trip")
})
public class Trip  {

@Id
@GeneratedValue
private Long id;

@Column(length = 30)
private String tripName;
@Column(length = 3)
private int duration;
@Column(length = 20)
private Date startDate;
@Column(length = 500)
private String description;

public Long getId() [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/java/springjpa-with-hibernate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Job Scheduler using commonj Timer in weblogic</title>
		<link>http://www.reffos.com/blog/java/job-scheduler-using-commonj-timer-in-weblogic/</link>
		<comments>http://www.reffos.com/blog/java/job-scheduler-using-commonj-timer-in-weblogic/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 05:31:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.reffos.com/blog/java/job-scheduler-using-commonj-timer-in-weblogic/</guid>
		<description><![CDATA[A Job Scheduler using commonj api on weblogic server. The commonj is supported by websphere also.
Refer Anthony Jen&#8217;s Blog for detailed tutorial including configuring the scheduler using JMX &#38; Spring annotations.
The following entry should be in web.xml. This will create a Timer called BatchTimer.

&#60;resource-ref&#62;
&#60;res-ref-name&#62;timer/BatchTimer&#60;/res-ref-name&#62;
&#60;res-type&#62;commonj.timers.TimerManager&#60;/res-type&#62;
&#60;res-auth&#62;Container&#60;/res-auth&#62;
&#60;res-sharing-scope&#62;Shareable&#60;/res-sharing-scope&#62;
&#60;/resource-ref&#62;
The batch timer with JNDI name is injected into the Spring bean, [...]]]></description>
		<wfw:commentRss>http://www.reffos.com/blog/java/job-scheduler-using-commonj-timer-in-weblogic/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
