Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
Next »
Cómo attachar un reporte BIRT a un mail generado por JWF
- Se generó un nuevo componente de JWF (como Mail, RBAC y otros) llamado HttpComponent
- Al componente se le configuran url types que pueden usarse luego en el mail Velocity.
- Este componente se configura en ideasoft-jwf/config/StaticComponents.xml:
<service name ="java:ideasoft/HttpComponent" className = "com.ideasoft.components.impl.generic.HttpComponentImpl" type="singleton">
<config>
<urlType name="birtPDF" url="http://localhost:8080/o3report/preview?Cust=1&__format=pdf&__report={0}.rptdesign"/>
<urlType name="birt" url="http://localhost:8080/o3report/preview?Cust=1&&__report={0}.rptdesign"/>
</config>
</service>
- Para agregar el reporte BIRT 'report1' como PDF:
$attachments.add($http.get('birtPDF', 'report1')
y para agregarlo como texto HTML:
$http.getText('birt', 'report1')