https://bz.apache.org/bugzilla/show_bug.cgi?id=62101
--- Comment #3 from Alain Fagot Bearez <[email protected]> --- Comment on attachment 35729 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35729 Java code that creates the error There are three methods in your code where the workbook is closed. The stack trace you submitted is typical of a situation where the workbook has been closed and the code tries to write it again. I would suggest to set the wb variable to null right after closing. This way you will get a nice NullPointerException when the rest of your code will try to access the same report again. Thereafter, all you will need is to avoid the rest of your code calling a report that has already been finalized. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
