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

oesina

Members
  • Posts

    110
  • Joined

  • Last visited

Community Answers

  1. oesina's post in How to show column header/footer only if details section is displayed? was marked as the answer   
    Hi bz3x,
    try to make the size of your subreport image with something like 200pixel Height, so that will become the minimum size to start the band and the subreport object on the same page. So there's onlly less than 200 pixels on the bottom of the page, it will force to start from next page.
    Hope it helps,
    Olga
  2. oesina's post in Problems to connect to a server using JDBC RAC was marked as the answer   
    Hi Micael,
    you have security validation error. By default JasperServer expects JDBC connection string rather than tnsnames.ora file record.
     
    Try to use something like below (without quotes):
    "jdbc:oracle:thin:@//localhost:1521/orcl",
    in your case something like:
    "jdbc:oracle:thin:@//localhost:1524/MYSERVICE"
     
    To disable security validation (it doesn't take () brackets), update Tomcat\webapps\jasperserver-pro\WEB-INF\classes\esapi\security-config.properties as
    # Turns request parameter validation on or off.
    security.validation.input.on=false
    # Turns CSRF attack guard on or off.
    security.validation.csrf.on=false
    # Turns sql validation on or off.
    security.validation.sql.on=false
     
    Hope that helps,
    Olga
×
×
  • Create New...