try{
InitialContext ic = CVUtility.getInitialContext();
ContactHelperLocalHome home = (ContactHelperLocalHome)ic.lookup("local/ContactHelper");
ContactHelperLocal remote = home.create();
remote.setDataSource(this.dataSource);
remote.deleteMOC(mocId, contactId, userId,true);
remote.updateModified("moc", contactId, userId, mocId);
}catch(NamingException re){
throw new EJBException(re);
}catch(CreateException ce){
throw new EJBException(ce);