daust / JasperReportsIntegration

JasperReportsIntegration provides an interface to use the JasperReports reporting engine in an Oracle database application, specifically with Oracle Application Express (Oracle APEX).
BSD 3-Clause "New" or "Revised" License
55 stars 23 forks source link

Certain Reports not Working #138

Open inderjeetfbd opened 7 months ago

inderjeetfbd commented 7 months ago

Hi @daust

We recently started using version 2.11.0 on Java 17.0.9.

Most reports are working perfectly, while certain reports doesn't run. There's no error in the log. When we run, we just get the output as in the screenshot. Please suggest how to debug it, since there's no error in the log.

image

Thanks. Inder

daust commented 7 months ago

That is a security feature to hide error messages. You can turn it off in the configuration file application.properties.

# To enable detailed request error messages, set printDebugToScreen=true
# When this setting enabled, any request that produces an error response includes a detailed message, 
# including a stack trace. 
# This setting must not be enabled on productions systems due to the risk of sensitive information being 
# revealed to an attacker.
# The default value is false
#printDebugToScreen=true
inderjeetfbd commented 7 months ago

Hi @daust

Thank you for your quick response. That really helped to see the error message.

You saved the day!

Thanks a lot. Inder.