InitialContext ic = CVUtility.getInitialContext();
IndividualLocalHome home = (IndividualLocalHome)ic.lookup("local/Individual");
IndividualLocal remote = home.findByPrimaryKey(new IndividualPK(indId,this.dataSource));
// the ejbLoad will take care of setting the dataSource on a findByPrimaryKey.
iv = remote.getIndividualVOWithBasicReferences();
CommonHelperLocalHome chhome= (CommonHelperLocalHome)ic.lookup("local/CommonHelper");
CommonHelperLocal commonhelper= chhome.create();
// we need to explicitly set the dataSource on a stateless session bean.
commonhelper.setDataSource(dataSource);
iv.setSourceName(commonhelper.getSourceName(iv.getSource()));
}catch(Exception e){
System.out.println("[Exception][ContactFacadeEJB.getIndividual] Exception Thrown: "+e);