0
votes
1answer
34 views

manual variable increment

I can't find the way to just create a variable and modify it during report generation. I have declared an integer variable: <variable name="my_counter" class="java.lang.Integer" ...
0
votes
1answer
48 views

iReport: Compilation of the report with XML datasource failed

I try to use an XML on iReport, so I've read a tutorial But when I compiled a report, I get this error : Error filling print... XPath compilation failed. Expression:  ...
0
votes
2answers
68 views

Watch xml sent to jasper report

I'm using JasperReports and iReport to constructing some reports. I'm trying to see what parameters are sent so I could use them in order to make the report more dynamic. For example, if a report ...
0
votes
1answer
292 views

JasperReports fillReport too slow and resource consuming

I've found that JasperReports is really slow when filling a report from a Java app. The program hangs at this line: print = JasperFillManager.fillReport(reporte, parameters, xmlDataSource); It ...
0
votes
1answer
159 views

Using XML in sub datasets

I'm new to iReport Designer 5.0.1 and I'm having trouble creating and using sub datasets. The XML file has just a list of <incidence>'s. For each <incidence> I want to show a TimeSeries ...
0
votes
1answer
257 views

Show Jasper Report when no data when use XML datasource NOT blank page

I use a Jasper as a report engine (using iReport-4.0.0) My datasource is XML file datasource and use XPath expression when filling the report For example Sample Data <StudentList> ...
0
votes
1answer
726 views

JasperReport setting parameters

I have some problems with JasperReport. I've generated a *.jrxml File through iReport. There I've definded some fields. Now i want to set these fields in my Java-Application, but it didn't work. My ...
1
vote
0answers
246 views

Java xml self-closing tags

My Java program looks like: public static void main(String[] args) { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db; try { db = ...
2
votes
1answer
707 views

Table component shows blank report for XML data source

I am facing issues while creating table component in report summary panel using XML as data source, the final report shows a mere blank line . Below is my xml data source named ProjectXML.xml ...
0
votes
0answers
62 views

Mysql LEFT JOIN, unknown column [closed]

select CH.id, CH.studentId, ST.name, CH.recordId, RC.name from checklist CH left join record RC on RC.id = CH.recordId The query above works fine in the mysql console. But when I tried this query in ...
2
votes
1answer
132 views

Display greek letters in jasperreports with JrxmlDatasource

I am trying to display greek letters in PDF generated by jasperreport. First I create XML, then xml datasource and pass it to jaspper. XML: Document doc = ...
3
votes
1answer
147 views

How to make report based on XML datasource with one-to-many relationships?

I need to write a report with iReport from an XML data source that has a one-to-many relationship. My main table is a list of users and each row in this table maps to many rows in the roles table. ...
0
votes
0answers
142 views

Use Jasper to create a plain XML export of a database

So far I know you can export a Jasper Report to XML. In my Java application, I want to export the contents of a MySQL database to an XML file, without any of the JasperReport tags (layout etc.) in ...
0
votes
0answers
364 views

How to send XML datasource object as parameter to JasperReports fill method

I'm using JasperReports within a java application using iReport to create the templates. For one particular report I would like to pass an xml object as the datasource to the report machine. I've been ...
0
votes
0answers
124 views

Where is the XML schema for JasperReports font XML file?

We're using the approach outlined here http://javaskeleton.blogspot.ch/2010/12/embedding-fonts-into-pdf-generated-by.html to ship custom fonts for JasperReports. Hence, there's a JasperReports ...
1
vote
0answers
479 views

Generate XML Output from Jasper Reports

Our team has integrated Jasper reports into a Spring MVC project to generate pdf/csv/html reports. We have a requirement as well to generate XML output from our database for feeding into some other ...
0
votes
1answer
2k views

Evaluation Exception In Jasper Reports

I am getting following exception for one of my Jasper Reports. The part of my jrxml file is <textField> <reportElement x="813" y="30" width="25" height="16"/> ...
0
votes
2answers
407 views

jasper report - how to add asterisk to barcode numeric output?

I'm created jrxml using iReport and generating barcode using barcode4j. Goal: Output barcode with numeric value which has asterisks. Looks something like below. |||||||||| *123456* barcode ...
0
votes
2answers
2k views

iReport with a remote xml data source

I've been totally stuck with this for the whole day. Seems like there is not documentation out there except in paper form. I'm using iReport 4.5.1. What I'm trying to do is to create a report with a ...
0
votes
1answer
701 views

Really simple XLS from XML datasource - Jasper

I have a very simple XML datasource structured like this: <datasource> <row> <column>Some text 1</column> <column>Some text 2</column> ...
0
votes
1answer
305 views

Convert Generated by JasperReports XML from Server Side to PDF at Client Side

I am doing a project where the customer has a very limited bandwidth between branches. When the project is regard of a web based billing system that will produce a bill in pdf format. However because ...
0
votes
0answers
307 views

iReport + XPath - Read XML tag value from Java

I'm working on a report where I need to check a XML tag value through XPath and depending the value, change the flow (if). Below it's the way I create an instance of my report: JRXmlDataSource xml = ...
0
votes
1answer
2k views

iReport: Sub-reports (XPath XML Data Source) not iterating records

I have got sub-reports working, but only the first item in each sub report gets displayed over and over again. So data formatted like this: Looks like this A ...
0
votes
1answer
868 views

CSV formatting in Jasper Reports

I am exporting a report I created to a CSV file. The export goes fine but the formatting is off and the variable that I have displaying in a text field doesn't show up at all. The formatting isn't ...
0
votes
1answer
1k views

Jasper reports - parameter transformation before passing it to report engine?

Is it possible in any way to transform report parameter (input control) before it is passed to report engine? I'll give an example. I'm using XML as data source: <Results> <Object ...
0
votes
1answer
2k views

JasperReports with XML as input — Getiing Inputstream null pointer exception

I am using iReport-4.1.1 to create the .jasper and .jrxml FILES. My files are under Webcontent/reports Below is the code that I am using to open a PDF from jasper. I am passing XML as the input. ...
0
votes
1answer
2k views

Jasper report syntax reportelement and frame

I'm trying to understand how jasper reports work but i find the syntax a little difficult to get to grips with. what exactly does reportelement- key refer to? also is frame a purely visual component? ...
1
vote
1answer
4k views

org.xml.sax.SAXParseException: Document root element “jasperReport”, must match DOCTYPE root “null”

I am trying t develop an application which gives out the report using Jasper Reports+iReport, all the thing went fine until i got this error on running the program. I am not much into xml so please ...
0
votes
1answer
762 views

JSP dynamic web page generation

I am trying to build an application for our users, we need a correct design and right technologies. Here is the requirement. Based on user template selection we need to generate dynamic web pages, ...
1
vote
1answer
860 views

Convert to Fixed-Width File Format

Question What generic and extensible solutions exist to convert a data file to fixed-width file? The data file format can be CSV, XML, or plain text, as exported by JasperReports. Background The ...
2
votes
2answers
867 views

JasperReports: Removing duplicate values from dataset

I want to print only unique values from a dataset into the list component, avoiding duplicate values. How to do it? P.S. I am using XML as the data source.
1
vote
2answers
1k views

Casting an Integer to a Double in XPath 1.0

I am currently building a XML based Jasper Report in which I am trying to add a tax percent onto the cost. A problem occurs when I use sum(//net-total) to value calculate the total cost. When the ...
2
votes
1answer
11k views

iReport: Sub-reports using XPath (XML Data Source) show up blank

I am using iReport 3.5.2 to create a report using an XML data source. I followed the "Step by step" example from the "Sub-reports" section of "The Ultimate Guide to iReport", and I was able to get the ...