cewolf not working on aix

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
gschrade
Posts: 11
Joined: Tue Oct 16, 2007 6:38 pm

cewolf not working on aix

Post by gschrade » Tue Nov 20, 2007 12:41 am

I have the following code in a jsp:

<jsp:useBean id="customerChart" class="com.mycompany.CustomerChartData"/>
<cewolf:chart id="customerPieChart" title="Percentage Labor by Customer" type="pie">
<cewolf:data>
<cewolf:producer id="customerChart">
<cewolf:param name="customerChartHashtable" value="<%= (Serializable)cht %>"/>
</cewolf:producer>
</cewolf:data>

</cewolf:chart>
<p>
<cewolf:img chartid="customerPieChart" renderer="cewolf" width="400" height="300"/>

It renders the appropriate chart on my localhost weblogic 8.1 server on windows, but it does not render (the ol' red x) on weblogic 8.1 on aix. There are no errors in any of the files. It runs through all the code, issues the appropriate img tag, but does not render.

Thanks in advance!

Locked