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

marco159

Members
  • Posts

    8
  • Joined

  • Last visited

marco159's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Have you created the patch for ZSI? I need to read a multipart/related response and with standard ZSI it's not possible ... Thanks
  2. The solution provided by "hopesolutions" works fine! I added to the java classpath ( /WEB-INF/classes ): 1) jasperreports_extension.properties: net.sf.jasperreports.extension.registry.factory.fonts=net.sf.jasperreports.extensions.SpringExtensionsRegistryFactory net.sf.jasperreports.extension.fonts.spring.beans.resource=fonts.xml 2) fonts.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"> <bean id="fontSansSerifFamily" class="net.sf.jasperreports.engine.fonts.SimpleFontFamily"> <property name="name" value="SansSerif"/> <property name="normal" value="fonts/arial.ttf"/> <property name="bold" value="fonts/arialbd.ttf"/> <property name="italic" value="fonts/ariali.ttf"/> <property name="boldItalic" value="fonts/arialbi.ttf"/> <property name="pdfEmbedded" value="false"/> </bean> </beans> 3) "fonts" folder containing these fonts: arial.ttf arialbd.ttf arialbi.ttf ariali.ttf Hope this helps! Marco
  3. Unfortunately, most of the times the errors appear when filling the report (not when compiling the jrxml).
  4. Hi, I'd like to know if there's a way (java code) to check compatibility of a .jrxml or .jasper report created with iReport and the JasperReport engine. Since the iReport and JasperReport versions change frequently, I can't upgrade my installations everytime. Users download the latest iReport version, upload the report to my application (running a previous version of jasperreport) and then some unexpected errors occur. Is there a way to get the iReport version used to create a jrxml or jasper file? I found this way to read the JasperReport version: net.sf.jasperreports.engine.JasperCompileManager.getClass().getPackage().getImplementationVersion(); but I can't get the iReport version used for a jrxml or jasper file. By simply comparing the two values I could warn the user that the iReport version used is not right. Thanks, Marco
  5. Hi Giulio, can you post your jrxml file so I can compare it to the one I'm using right now? I still can't get the right output ... thanks for your support, really appreciated. Marco
  6. Hi, this is my jrxml file. I upload also a .csv file with data to run the report. Create a new csv datasource as shown in the screenshot file, then you can run the report and check the graph. Thanks, Marco
  7. Hi, I'm using iReport 3.6.0 and, as you can see in the screenshot, I'm having a problem with the graph data. In the screenshot you can see that "October" has 3 different values (1,1,2) but the graph shows only two of them. In addition, the green column is drawn even if the values are zero. I've done some tests with other data and the problem is always there. Am I doing somethign wrong? Somebody else noticed this? Thanks, Marco
×
×
  • Create New...