Deploy a Report (JasperServer) Through a WebService

Hello,

i want to deploy a report  that i have uploaded in JasperServer through a WebService. This is a part of my code:

 public JasperPrint runReport(String uri,java.util.Map parameters) throws Exception {
        ResourceDescriptor rd=new ResourceDescriptor();
        rd.setWsType(ResourceDescriptor.TYPE_REPORTUNIT);
        rd.setUriString(uri);          
        return server.getWSClient().runReport(rd, parameters);
    }
(...)
JasperPrint print=client.runReport(report, params);              
 byte[] pdf =JasperExportManager.exportReportToPdf(print);
 
The problem is when I transform the byte[] pdf to a pdf file, the pdf comes with the text, but comes without any images.
when I run the report in jasperserver this comes with images, but when I call it with the webservice comes without them.
 
I hope someone can help me..
 

 

Khancer's picture
Joined: May 19 2014 - 8:36am
Last seen: 8 years 12 months ago

0 Answers:

No answers yet
Feedback