I am building a Java Px in Oracle Agile 9.3.0.2.
My Px involves interaction with Excel files of both formats (HSSF and XSSF).
I am using Apache POI library for excel file processing.
But i get "java.lang.IncompatibleClassChangeError" for this line :
Workbook workbook = WorkbookFactory.create(ip);
where ip is the input stream of the excel file.
when i try to access any HSSF spreadsheet file. (.xls)
The Px works fine for XSSF spreadsheet files. (.xlsx)
Please help!!!!