public void deleteGroupMember(int groupMemberId, int groupId)
{
try {
InitialContext ic = CVUtility.getInitialContext();
GroupLocalHome home = (GroupLocalHome)ic.lookup("local/Group");
GroupLocal remote = home.create();
remote.setDataSource(this.dataSource);
remote.deleteGroupMember(groupId, groupMemberId);
} catch (NamingException re) {
throw new EJBException(re);
} catch (CreateException ce) {