Reputation: 179
I want to deploy reports that are created with Birt, in Eclipse to JBoss.
Is it oki to : create a report project, after that to export it as a war and deploy it to the JBoss server?
how do i export it as a war ?
do i need to export it as a war , or I can just export it as a jar?
about the deploy : I just have to copy the war in the deploy folder in JBoss or?
Thank you.
Upvotes: 1
Views: 2385
Reputation: 2472
A Thing you deploy to JBoss is BIRT Viewer. BIRT Viewer is a web application that opens your reports, renders them and returns via http. There is no need to export a birt project as anything.
Here is quick "Deploying to JBoss" instruction for BIRT Viewer (and Download link - download Runtime version).
After deploy copy your .rptdesign
files to deploy/birt.war
dir (yeap, birt.war should be a directory). You can run your ...JBoss.../deploy/birt.war/foo.rptdesign
report as something like http://localhost:8080/birt/frameset?__report=foo.rptdesign
.
-> More about BIRT Viewer usage.
Upvotes: 1