Trying to filter a collection. I do get the initial collection of campusLocs below but I hang on the line that creats a new collection of uniqLocs. I dont get any exceptions or anything, jsut hang. Any help will be appreciated. BTW, the application architecture is struts/weblogic8/oracle9i.
session = SessionHelper.getSession();
logger.info("getCampusLocations: B4 findCollection " );
campusLocs = gateway.findCollection("HrRecruitSchedule");
logger.info("getCampusLocations: all locs size: " + campusLocs.size());
Collection uniqLocs = session.filter(campusLocs, "select distinct this.school");
logger.info("getCampusLocations: uniq locs size: " + uniqLocs.size());
|