public String getPrimaryEmailAddress(int contactID,int contactType){
String emailAddress = null;
try
{
InitialContext ic = CVUtility.getInitialContext();
ContactHelperLocalHome home = (ContactHelperLocalHome)ic.lookup("local/ContactHelper");
ContactHelperLocal remote = home.create();
remote.setDataSource(this.dataSource);
emailAddress = remote.getPrimaryEmailAddress(contactID,contactType);
}catch(Exception e){
System.out.println("[Exception][ContactFacadeEJB.getPrimaryEmailAddress] Exception Thrown: "+e);
//e.printStackTrace();