How do i get the analysis view using the webservice client provided by jasper ? I need to display this view in my web application
Is it possible to extract only the data of the report by using webmethods provided by jasper ??
Any help regarding it is highly appreciated
2 Answers:
Posted on January 19, 2009 at 5:19am
Hi,
When I tried to run Analysis View as Jasper Report, it is throwing me /analysis/views/XYZView is not a valid report execption.
Below is the code I used to run the view.
Please let know how to run Analysis View
Thanks,
Ajay
Code: |
public JasperPrint runMondrianSchema(String reportUri, java.util.Map parameters) throws Exception { ResourceDescriptor rd = new ResourceDescriptor(); rd.setWsType(ResourceDescriptor.TYPE_MONDRIAN_SCHEMA); rd.setUriString(reportUri); System.out.println("INSIDE THE RUN REPORT"); return server.getWSClient().runReport(rd, parameters); } |