Jasper Report hangs forever, no error

Hi everybody,

I’m trying to run Jasper Report using a foundset. The report compiles and runs without data in iReport.
But when I try to run it into my solution it hangs forever and uses 100% of the processor.
It looks like it is doing a never ending loop but I don’t use any calculation in my report.
Here is how I run the report:

var params = new java.util.HashMap();
params.put('year',v_year);
params.put('rpt_path',plugins.it2be_tools.server().getApplicationServerDir());

plugins.jasperPluginRMI.runReport(forms.frm_holidays_state_rpt.foundset, "rpt_holidays_state.jasper" , null, 'view', params);

The foundset is not null and the parameters are ok as well. Other reports, using queries (this is my first foundset report), are working normally.

I’m using iReport 3.7.1 and the latest jasperReport plugin with jasperreports-3.7.1.jar.
I use Servoy version: 5.1.0 - build 956

No error raised in iReport, Developer Console or Admin page logs.

What can I do to find more details about the problem? :shock:

Foobrother,

This bug has already been fixed in the jasper plugin (see issue 20 http://code.google.com/p/servoy-jasperr … tail?id=20 ),
you can download the jar that includes the fix from the plugins download page http://code.google.com/p/servoy-jasperreports-plugin .

Rob

The new plugin version fixed it indeed!

Thanks you :D