@Override
public View handle(HttpServletRequest req) throws Exception {
final Session s = new Session(extractSession(req.getPathInfo()));
IDESessionModel model = cache.getModel(s);
model.refresh();
return new IDEMainView(model, req.getContextPath() + req.getServletPath());
}