I have a requirement to generate report in Pentaho, and display in jsp pages (in struts application). If any one know about implementation of Pentaho please Replay...
There are multiple ways of doing it. I have done it using Xactions (in Pentaho version 4.x.x). Call the reports in Xactions and then use xaction url from JSP page to embedded it.
Also you can also look at the Pentaho wiki for embedding and extending reports.
There are also similar links :
http://forums.pentaho.com/showthread.php?54076-Calling-Pentaho-Reports-From-JSP
Embedding a Pentaho report inside a panel on another web page
.prpt reports running from java
The basic idea (probably) is to publish the report and call the report using the report URL from the JSP/Java page.
Hope this helps :).
Related
I have a JIRA server installed on my server I would like to add a javascript to all pages. any idea how?
I could not change any jsp file it seems that all are compiled could not be modified.
If hacky solutions don't make you feel uncomfortable, you might be able to use the "Announcement Banner" to achieve this. You can insert html/css/javascript there and it will be displayed on each page in JIRA.
There's an example available here.
The "Announcement Banner" documentation is available here.
Note that this only works on JIRA Server. On JIRA Cloud the Announcement Banner only accepts text or wiki format.
I have sample data which I want to show in bar/pie graph using export plugin in grails. I googled a lot but was unable to get exact details of how to do it?
Can anybody please provide me links or any information to start off with this? Thank you.
You didn't provide much description about exactly what your use case is but there are a number of charting plugins for Grails mentioned in this question:
Grails and charting?
These plugins would enable you to render charts on your page. Then there's the issue of converting to PDF. Is it acceptable for users to print the web page to PDF using the browser's functionality? If not, again there are plugins for converting GSPs to PDF (such as http://grails.org/plugin/pdf).
Hopefully you should be able to do what you want with a combination of plugins.
Can anybody share some detailed steps on how to configure the profiler, and how to see the results. It seems that using /profiler/xpl/ or /tools-profiler/xpl/ gives the same error:
Cannot load "/apps/profiler/page-flow.xml" with webapp loader
The XPL profiler has been removed since Orbeon Forms 3.9. You can still find its source code in the "attic", in case you're interested in reviving it, but it isn't currently part of Orbeon Forms and there are no plans to take it out of the attic.
I tried the approach of using Form-Builder-Generated-Form within Java application suggested here < Running Orbeon-Form-Builder-Generated-Form with Java Application > : downloaded Orbeon nightly build, created a sample form using Form Builder and copy & pasted it into JSP page in my app. However, when I try to access this JSP, it redirects me to: /myapp/fr/unauthorized . Can you please tell me what I maybe doing wrong? Or what is the right way of making Orbeon process Form Builder generated content in Java app?
For my deployment I followed separate deployment and configuration specified in Orbeon documentation. Thanks in advance.
You are not doing anything wrong, but Orbeon Forms doesn't support this type of form deployment.
The separate deployment mode runs the output of your JSP directly through the XForms engine.
Form Builder-generated forms OTOH expect pre-processing via the Form Runner runtime, in particular through the components.xsl XSLT transform. This is needed to support all the Form Runner features, including built-in persistence, error summary, internationalization, etc.
Currently the cleanest way to integrate such forms with your own app is to just run them side by side (Orbeon WAR + your own WAR) and navigate between each other via links and POSTs.
You could also use an iframe, although that is often a disliked solution.
You could also transform the form produced by Form Builder into plain XForms that doesn't assume Form Runner. It wouldn't be too hard to do but would be outside the scope of this StackOverflow question.
I have a project where I need to create a Word document report based on some items which custumer can choose on MVC 3 (Razor) website.
Is it possible in any way? The only solutions I can find is report in Excel.
Do I need to create Word Templates?
I would probably use the: Open XML SDK 2.0 for Microsoft Office
there are many advantages in doing this like no need to instantiate Word on the web server, probably not even need to have it installed...