Search found 4 matches

by eels06
Thu Dec 28, 2006 3:59 pm
Forum: JFreeChart
Topic: Problem with servlet utilities
Replies: 7
Views: 9641

thanks for your answers.
by eels06
Wed Dec 27, 2006 4:09 pm
Forum: JFreeChart
Topic: Problem with servlet utilities
Replies: 7
Views: 9641

:roll: i can't manage to find why this code doesn't work...

i don't know why ServletUtilities is not able to put (or get) a chart deleter in (from) my Session ????
by eels06
Tue Dec 26, 2006 10:27 am
Forum: JFreeChart
Topic: Problem with servlet utilities
Replies: 7
Views: 9641

yes, you're right. Here is the code of ServletUtilities.registerChartForDeletion(...) 310 ChartDeleter chartDeleter = (ChartDeleter) Session.getAttribute("JFreeChart_Deleter"); 311 if (chartDeleter == null) { 312 chartDeleter = new ChartDeleter(); 313 session.setAttribute("JFreeChart_Deleter", chart...
by eels06
Fri Dec 22, 2006 4:24 pm
Forum: JFreeChart
Topic: Problem with servlet utilities
Replies: 7
Views: 9641

Problem with servlet utilities

hello everybody, i'm a new jfreechart user, i'm tring to save charts using ServletUtilities class. Here is my code : try { result = ServletUtilities.saveChartAsJPEG(chart, WIDTH, HEIGHT, session); result = "./DisplayChart?filename=" + result ; LOG.debug("chart sauvé à l'adresse : "+result) ; } catch...