// Get the MarketingLists from the database, so you can set the result.
ArrayList rawMarketingList = new ArrayList();
try {
ContactFacadeHome contactFacadeHome = (ContactFacadeHome)CVUtility.getHomeObject("com.centraview.contact.contactfacade.ContactFacadeHome", "ContactFacade");
ContactFacade remoteContactFacade = contactFacadeHome.create();
remoteContactFacade.setDataSource(dataSource);
rawMarketingList = (ArrayList)remoteContactFacade.getAllMarketingList();
} catch (Exception e) {
System.out.println("[Exception][MergeSearch.execute] Exception Thrown: Getting Marketing Lists: "+e);
throw new ServletException(e);