{
try
{
InitialContext ic = CVUtility.getInitialContext();
ContactHelperLocalHome home = (ContactHelperLocalHome)ic.lookup("local/ContactHelper");
ContactHelperLocal remote = home.create();
remote.setDataSource(this.dataSource);
remote.updateMOC(contactMethod, contactId, userId,true);
// When a contact method or address is updated, it must alter the modified
// time of the individual or entity record with which it is associated to the current
// time. If this does not happen, sync is broken.
remote.updateModified("moc", contactId, userId,contactMethod.getMocID());
}catch(Exception e){
System.out.println("[Exception][ContactFacadeEJB.updateMOC] Exception Thrown: " + e);
}
} // end updateMOC() method