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

gustavofarias

Members
  • Posts

    202
  • Joined

  • Last visited

  • Days Won

    2

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Posts posted by gustavofarias

  1. On 4/18/2024 at 12:15 PM, tuspatil said:

    1) Will recent licencing change activity at JasperSoft affect bundling jasperreports.jar (Community Edition) in our application?

    No.

     

    On 4/18/2024 at 12:15 PM, tuspatil said:

    2) Can we use jasperreports.jar (Community Edition) without purchasing a licence?

     

    Yes

     

    3) Can your company/business afford to depend on a open source solution from a company that can overnight do what they did to Jasperreports server?

  2. On 4/22/2024 at 10:10 AM, jan.hladik said:

    All download links to ce are deleted???

    Aren't they great? Changed licensing overnight, pulled all download links, refuse to give source code, even prohibit comments on the official announcement.

     

    On 4/22/2024 at 10:10 AM, jan.hladik said:

    Is any of these version able to download????

    I can provide you 8.1.1 linux version installer.

  3. Any report I have that have images are not generated in Jasper server preview. In logs I get java.lang.NoClassDefFoundError: com/github/jaiimageio/stream/RawImageInputStream.

    But, if I generate the report by rest api it works fine.

    Any ideas? Happened after upgrade from 8.0.2 to 8.1.1

    I don't get an error in Jasper server gui. Just the get the Loading spinning forever. The error is only in the logs.

  4. There is a detail I didn't mention. The variable that I use in the expression of the parameter passed to the subreport is itself returned by another subreport. Later I saw in the docs that in these cases, the master variable that stores the subreport variable should be marked as "calculation=System". The lack of this setting was responsible for the variable being null most of the time. After I set it to "System" it took a value in the title band and kept it to the end, solving the original problem. Anyway, thanks for the explanation (with proof). I think this is the expected behavior. I mean, the passing of a variable to a subreport should evaluate when the report is being processed.

  5. I have this master report that passes 2 parameter to a subreport. One of the parameters is the value of a field ($F{foo}), and it's ok. The other parameter has the expression $V{bar}. So, it's the value of a variable. This one is always null at the subreport although it's non null and printable in the main report in the same band where I put the subreport.

    For the variable to be printable in the main report I have to use "evaluation time = band". If I use "Now" it's always null.

    So basically I'm passing this null expression to the subreport because I can't tell jasper that the expression should be evaluated at the end of the band, as I do with a text field.

    Any ideas on how can I pass a parameter to a subreport when the expression is the evaluation of a variable? Or how can I control the evaluation time of the expression of the passed parameter?

  6. Poor documentation by the way. There is a service pack and a bin version. Whats the difference? are they equivalent? How to use them? I upgraded a 8.0.0 version with the bin version and got some sql failures upon update.

  7. In this page: https://www.tibco.com/support/notices/spring-framework-vulnerability-update it says

    TIBCO JasperReports® Server (Professional and Community offerings) version 8.0.x and below : Unaffected

    But in this page: https://community.jaspersoft.com/wiki/java-spring-framework-vulnerability-update-jaspersoft-products it says

    TIBCO Jaspersoft products/versions with vulnerable Spring Framework code: JasperReports Server Community Edition 7.5.x, 7.8.x, 8.0.x

    So, is it vulnerable or not?

  8. I have a master report that uses a MongoDB data source, and uses a field as parameter to a subreport to retrieve some more data.
    The problem is that the subreport doesn't share the same data source as the master. The subreport should connect to Oracle.

    I already have an Oracle data source in Jasper server but I'm unable to reference it in the subreport, or pass it to the subreport in the master report code.

    I tried "repo:/path/to/dataSource", but it doesn't work saying that a String is not a data source. Which makes sense. So, how can I reference a datasource in a expression?

  9. First I needed to activate the logs.

    in

    /var/lib/tomcat/webapps/jasperserver/WEB-INF/log4j2.properties[/code]

    change this:

    appender.fileout.fileName=${log4j:configParentLocation}/logs/jasperserver.logappender.fileout.filePattern=${log4j:configParentLocation}/logs/jasperserver.%i.log.gz[/code]

    to something like:

    appender.fileout.fileName=/var/log/tomcat/jasperserver.logappender.fileout.filePattern=/var/log/tomcat/jasperserver.%i.log.gz[/code]

     

×
×
  • Create New...