chart = ec.createWallclockChart( ""+this.getExperiment().getEntityID() );
// Pick into the session...
HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
HttpSession session = request.getSession();
// Write the chart image to the temporary directory
ChartRenderingInfo info = new ChartRenderingInfo(new StandardEntityCollection());
this.graphId = ServletUtilities.saveChartAsPNG(chart, 600, 500, info, session);
this.graphImageMap = ChartUtilities.getImageMap(graphId, info);
this.graphUrl = request.getContextPath() + "/servlet/DisplayChart?filename=" + graphId;
return this.graphUrl;
} catch ( Exception e ) {