Jump to content
We've recently updated our Privacy Statement, available here ×

JasperManager.loadXmlDesign() never returns


Recommended Posts

By: Zihong Lu - zihong

JasperManager.loadXmlDesign() never returns

2003-12-09 22:53

I was tracing a problem in iReport (https://sourceforge.net/forum/forum.php?thread_id=984918&forum_id=217623), and found this problem on JasperReports side. Hope people know how can help me.

 

I tried to put iReport into a jar file, with the proper manifest, and put the iReport.jar in the same directory as the jasperreports-0.5.0.jar and other required jar files. With the same compiled iReport class code, before jarred, the iReport worked fine. After jarred, the iReport could still start, could create new docs, open existing docs, but could not compile xml templates. It turned out that the function

 

JasperCompileManager.compileReportToFile()

 

in iReport's IReportCompiler.java never returned. I had replaced the call with the following calls:

 

JasperDesign jasperDesign =

JasperManager.loadXmlDesign(inputStream);

JRBshCompiler theCompiler = new JRBshCompiler();

JasperReport result =

theCompiler.compileReport(jasperDesign);

 

and found out that the loadXmlDesign() never returned (The inputStream is not null, I checked it). Again, before jarred, the iReport was working fine.

 

 

Any idea what went wrong? Any suggestion is highly appreciated. Here is another link that I found on related issue, but it did not work for me:

 

http://forum.java.sun.com/thread.jsp?forum=38&thread=419867

 

 

 

-Zihong

 

 

 

 

 

By: Zihong Lu - zihong

RE: JasperManager.loadXmlDesign() never returns

2003-12-10 10:38

It turned out that the Classpath in my manifest mispelled the commons-digester.jar to commons-digest.jar. It would be nice if the system throws an exception when it did not find the commons-digest.jar package, or any necessary package in that regard.

 

Anyway, after corrected it, this problem solved, even though the iReport.jar still does not work. iReport.jar complained about

 

package?dori.jasper.engine?does?not?exist

import?dori.jasper.engine.*;

 

This is a different issue.

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...