Rambabu

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by Rambabu

  1. Need Bar3D.swf file.

    Hi, I didn't find out the Bar3D.swf file under the Chart folder. Can you let me know how can i display the Bar3D chart. Regards, Rambabu.
  2. Hi, I placed all .swf files under WEB-INF folder for the security reasons. But I am not able to access those files if they are in WEB-INF folder through javascript and Java code in the JSP. (See the below code) JavaScript: <script type="text/javascript"> new FusionCharts("/WEB-INF/fusionCharts/Bar2D.swf", "", "xmlString", "chart1Id", "400", "180", 0, 0); (or) new FusionCharts("../../WEB-INF/fusionCharts/Bar2D.swf", "", "xmlString", "chart1Id", "400", "180", 0, 0); </script> Java: <% String chartHTMLCode=FusionChartsCreator.createChartHTML("../../WEB-INF/fusionCharts/Bar2D.swf", "", "strxml", "scoreGraph", 400, 180, false); %> ------------- Even i tried with the standalone example as it is given in the "$CodeJSPBasicExampleBasicChart.jsp" with the Tomcat 6.0. But i am not able to access the Column3D.swf file located under the /WEB-INF/FusionCharts/. (See the below code) <% String chartHTMLCode=createChartHTML("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false); %> Please let me know how can i access these files from the WEB-INF folder. Note that i can able to access .swf files if i placed them outside of web-inf folder. Thanks, Rambabu.
  3. Hi, Even i tried with the standalone example as it is given in the "$CodeJSPBasicExampleBasicChart.jsp" with the Tomcat 6.0. But i am not able to access the Column3D.swf file located under the /WEB-INF/FusionCharts/. (See the below code) <% String chartHTMLCode=createChartHTML("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false); %> Please let me know the solution for this. Thanks, Rambabu.
  4. I placed all .swf files under WEB-INF folder for the security reasons. But I am not able to access those files if they are in WEB-INF folder through javascript and Java code in the JSP. (See the below code)JavaScript: < script type="text/javascript"> new FusionCharts("/WEB-INF/fusionCharts/Bar2D.swf", "", "xmlString", "chart1Id", "400", "180", 0, 0); (or) new FusionCharts("../../WEB-INF/fusionCharts/Bar2D.swf", "", "xmlString", "chart1Id", "400", "180", 0, 0); </script> Java: <% String chartHTMLCode=FusionChartsCreator.createChartHTML("../../WEB-INF/fusionCharts/Bar2D.swf", "", "strxml", "scoreGraph", 400, 180, false); %> Please let me know how can i access these files from the WEB-INF folder. Note that i can able to access .swf files if i placed them outside of web-inf folder. Thanks, Rambabu.