Re: BIRT integration

2013-04-11 Thread Peter Courcoux
Hi, Birt is a substantial codebase and report generation is often very resource hungry. I did have Birt embedded in a tapestry application but many reports took longer to generate than I wanted my users to wait, so have pushed it out into a separate cluster, using web services, (CXF) to

Re: Loop Component

2008-07-01 Thread Peter Courcoux
/howto_ognlbinding.html 2008/6/30 Peter Courcoux [EMAIL PROTECTED]: Hi all, When the loop component sets the value from the iterator, it seems to miss properties inherited from a base class. So if I'm iterating over a set of objects of class B which extends A, I'm only seeing the properties of B set. All

Re: Loop Component

2008-07-01 Thread Peter Courcoux
and setter methods. Bill On Tue, Jul 1, 2008 at 11:43 AM, Peter Courcoux [EMAIL PROTECTED] wrote: Many thanks for your reply Sven. However, I think that I didn't explain the problem properly. If my, much simplified, java class is like this :- pre public class comp { //note getters/setters

Loop Component

2008-06-30 Thread Peter Courcoux
Hi all, When the loop component sets the value from the iterator, it seems to miss properties inherited from a base class. So if I'm iterating over a set of objects of class B which extends A, I'm only seeing the properties of B set. All the properties which are inherited from A are null.