InitialContext ctx = new InitialContext();
ActivityHelperLocalHome home = (ActivityHelperLocalHome)ctx.lookup("local/ActivityHelper");
ActivityHelperLocal remote = home.create();
remote.setDataSource(status);
remote.updateStatus(activityID, attendeeID, status);
} catch (Exception e) {
System.out.println("[Exception][ActivityFacadeEJB.updateStatus] Exception Thrown: " + e);
e.printStackTrace();
}
}