Jump to content
Changes to the Jaspersoft community edition download ×

gustavofarias

Members
  • Posts

    201
  • 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

Everything posted by gustavofarias

  1. https://sourceforge.net/projects/jrs-installers/files/
  2. No. 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?
  3. Aren't they great? Changed licensing overnight, pulled all download links, refuse to give source code, even prohibit comments on the official announcement. I can provide you 8.1.1 linux version installer.
  4. I ask you guys that have installers from released versions of Jasper Server community to join me so we can discuss ways to bring back online download links for people who need/depend on jasper server community.
  5. Just add URL parameter &ignorePagination=true The report will have just one page, so no reason to have repeated column headers
  6. Is it possible to change a variable's value outside of it's own expression? In other words is it possible to have a variable in the report that is not controlled by the report engine, that one can freely change?
  7. Downloaded jai-imageio-core-1.4.0.jar from github and put in tomcat/lib. Only god knows why this lib is missing in official release of JasperServer.
  8. 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.
  9. 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.
  10. 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?
  11. Amazing how such a basic thing like this has no official answer. Almost every API needs passing anonymous parameters separated by /
  12. I just made a normal upgrade. Using buildomatic js-upgrade-same-db-ce.sh
  13. Use Lists. Each list will have it's own dataset and query.
  14. 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.
  15. https://community.jaspersoft.com/project/jasperreports-server/releases
  16. 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?
  17. With default server settings you can't use a query starting with "WITH FACTURA AS (". You either change the query not to use WITH AS or you change jasper server settings (there is lot's of answers about it) to be less restrictive.
  18. It happens only if the first line is blank? This is, if TOTO is blank, GIRARDIN goes up one line?
  19. Use jaspersoft studio to export your font extension to a jar. Add the jar as a resource in your report unit.
  20. 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?
  21. 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...