problems with unix

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Dennis

problems with unix

Post by Dennis » Tue May 28, 2002 3:31 pm

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???

David Gilbert

Re: problems with unix

Post by David Gilbert » Tue May 28, 2002 5:41 pm

Search for 'X11' in this forum.

Regards,

DG.

Locked