public ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response) throws Exception {
SearchResultsFrozen frozenResults = (SearchResultsFrozen) request.getSession().getAttribute("searchResults");
if ( null != frozenResults ) {
String phyloWSPath = request.getSession().getAttribute("originalSection") + "/find";
SearchResults<?> searchResults = frozenResults.thaw();
request.getSession().setAttribute("searchResultsThawed", searchResults);
request.getSession().setAttribute("recordSchema", request.getSession().getAttribute("recordSchema"));
request.getSession().setAttribute("format", "rss1");
request.getSession().setAttribute("baseURL", TreebaseUtil.getPurlBase());
request.getSession().setAttribute("phyloWSPath", phyloWSPath);