Hola, estoy haciendo mi primer dashboard, y alguien me paso un manual para generarlos pero hacia la versión 1.7 y yo estoy trabajando ya con la 3.0, así que traté de seguirlo pero al final me arrojo error, así que nuevamente acudo a su ayuda para poder dar solución, primero,
¿Me pide que ponga un jar y un flash en las carpetas del jboss de la versión 1.7,
2) Copy openFlashChartComponent.jar to $PENTAHO-HOME/bi-server/jboss/server/default/
deploy/pentaho.war\WEB-INF\lib;
3) Copy open-flash-chart.swf to $PENTAHO-HOME/bi-server/jboss/server/default/deploy/
pentaho-styles.war/images/;
Por lo tanto donde sería la nueva ruta de instalación??
yo probé ponerlos en
/opt/pentaho/biserver-ce/tomcat/webapps/pentaho/WEB-INF/lib y en
/opt/pentaho/biserver-ce/tomcat/webapps/pentaho-style/images
pero no se sí sea la ruta correcta.
También agrego mi xaction por sí sirve de algo
De antemano, GraciasCode:<?xml version="1.0" encoding="UTF-8"?> <action-sequence> <title>Flash Pentaho Dashboard</title> <version>1</version> <logging-level>ERROR</logging-level> <documentation> <author>ajuarez</author> <description>Generador de dashboards</description> <help/> <result-type/> <icon/> </documentation> <inputs> <chart_width type="string"> <sources> <request>chart_width</request> </sources> <default-value><![CDATA[600]]></default-value> </chart_width> <chart_height type="string"> <sources> <request>chart_height</request> </sources> <default-value><![CDATA[300]]></default-value> </chart_height> </inputs> <outputs> <html_fragment type="string"> <destinations> <response>Content</response> </destinations> </html_fragment> </outputs> <resources> <chart_template> <solution-file> <location>example.txt</location> <mime-type>text/plain</mime-type> </solution-file> </chart_template> <catalog> <file> <location>/opt/pentaho/biserver-ce/pentaho-solutions/steel-wheels/analysis/steelwheels.mondrian.xml</location> <mime-type>text/plain</mime-type> </file> </catalog> </resources> <actions> <action-definition> <component-name>MDXLookupRule</component-name> <action-type>OLAP</action-type> <action-resources> <catalog type="resource"/> </action-resources> <action-outputs> <query-results type="result-set" mapping="query_result"/> </action-outputs> <component-definition> <jndi><![CDATA[SampleData]]></jndi> <location><![CDATA[mondrian]]></location> <query><![CDATA[with member [Measures].[Product] as '[Product].CurrentMember.Name' member [Measures].[Market] as '[Markets].CurrentMember.Name' select Crossjoin({[Markets].[All Markets].[APAC], [Markets].[All Markets].[EMEA], [Markets].[All Markets].[Japan], [Markets].[All Markets].[NA]}, {[Measures].[Product], [Measures].[Sales]}) ON COLUMNS, {[Product].[All Products].[Classic Cars], [Product].[All Products].[Motorcycles], [Product].[All Products].[Planes], [Product].[All Products].[Ships], [Product].[All Products].[Trains], [Product].[All Products].[Trucks and Buses], [Product].[All Products].[Vintage Cars]} ON ROWS from [SteelWheelsSales]]]></query> </component-definition> </action-definition> <action-definition> <component-name>com.bayontechnologies.bi.pentaho.plugin.openflashchart.OpenFlashChartComponent</component-name> <action-type>Open Flash Chart</action-type> <action-inputs> <chart_dataset type="result-set" mapping="query_result"/> <chart_height type="string"/> <chart_width type="string"/> </action-inputs> <action-resources> <chart_template type="resource"/> </action-resources> <action-outputs> <html_fragment type="string"/> </action-outputs> <component-definition/> </action-definition> </actions> </action-sequence>


Reply With Quote
