try
{
InitialContext ic = CVUtility.getInitialContext();
ContactHelperLocalHome home = (ContactHelperLocalHome)ic.lookup("local/ContactHelper");
ContactHelperLocal remote = home.create();
remote.setDataSource(this.dataSource);
// Transaction not required cause even if adding member fails its ok.
avo = remote.getRelatedAddress(addressId, contactType, contactID);
}catch(Exception e){
System.out.println("[Exception][ContactFacadeEJB.getAddress] Exception Thrown: "+e);
//e.printStackTrace();
}
return avo;