public void deleteSource(int sourceId)
{
try{
InitialContext ic = CVUtility.getInitialContext();
SourceLocalHome home = (SourceLocalHome)ic.lookup("local/Source");
SourceLocal remote = home.findByPrimaryKey(new SourcePK(sourceId,this.dataSource));
remote.remove();
}catch(NamingException re){
throw new EJBException(re);
}catch(FinderException fe){
System.out.println("[Exception][ContactFacadeEJB.deleteSource] Exception Thrown: "+fe);
}catch(RemoveException fe){