public void createAddress(int contactId, int contactType, AddressVO addressDet, int individualId)
{
try
{
InitialContext ic = CVUtility.getInitialContext();
ContactHelperLocalHome home = (ContactHelperLocalHome)ic.lookup("local/ContactHelper");
ContactHelperLocal remote = home.create();
remote.setDataSource(this.dataSource);
remote.addAddress(addressDet, contactId, contactType, individualId, true);
}catch(Exception e){
System.out.println("[Exception][ContactFacadeEJB.createAddress] Exception Thrown: "+e);
//e.printStackTrace();