Excel importer module userlib

3
I got a question about the excel importer module. It contains a library called javax.xml.stream-1.0.1.jar which is actually part of java itself. If you call any of the functions part of this library from your own code it will cause a class loading exception. Since it is part of standard java anyway i was wondering why is it imported in the userlib anyway?
asked
2 answers
1

The javax.xml.stream package has been included to allow for streamed reading of the excel sheet, if I recall correctly specifically for the XLSX files.

The additional libraries that are included with the excel importer module where necessary because of some class loading issues in the past that prevented usage of the javax.xml classes supplied with Java.
This package has not been modified and it's still the standard library.

We want to include as few libraries as we can, so we should definitely test if all cases of the excel importer can be handled without this library.
In older 5.x version I know it had a function, but this might no longer be relevant. We can test this and might be able to change or remove this library.

answered
1

This library kills my own xml export/import stuff. I removed it and the excel import works just fine. I think it was included for the template export/import functions

answered