I made a servlet which makes a JPEG-image..,.
using:
JFreeChart chart = this.createChart(request);
//createChart returns a JFreeChart...
OutputStream out = response.getOutputStream();
ChartUtilities.writeChartAsJPEG(out, chart, 750, 500);
This works fine with windows, but in Unix it doesn't seem to work?!?!?
it can't find/draw the image
Can someone help me out???