Thank you Chris. Moreover, if I call jfreechart to generate reports through
web applications, it will not be affected, I believe?

As long as you do not use Applets to output JFreechart data you should
be fine (saying: if you generate images with JFreechart)

(1) My jsp:
  <img src="jfreechart_reportProcessReport.action">

(2) struts.xml

<action name="jfreechart_reportProcessReport"  method="jfreechart_report"
class="ProcessReport">
         <result name="success" type="chart">
            <param name="chart">chart</param>
            <param name="width">1000</param>
            <param name="height">500</param>
         </result>
</action>


(3) My struts java action class (server side):

do:
ChartFactory.createBarChart3D(){... ...}


As a result, due to (1) ~(3) I am safe I believe.

Thanks a lot for all your comments!
Emi


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to