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!