XSLFTable is empty when generated on Apache Felix/Sling server, works fine from standalone code

2016-08-11 Thread Guillaume Lucazeau
Hello, We use Apache POI 3.14 to generate a PPTX document from Apache Sling content, using the bundle org.apache.servicemix.bundles.poi. For testing content we created a very light OSGi bundle, with one servlet and one method to generate a small table: XMLSlideShow ppt = new XMLSlideShow();

Creating pivot table and summation column

2016-08-11 Thread Chris Stillwell
I have a sheet with 4 columns of data that I am wanting to create 2 pivot tables with. The first column has a classification label. The second column has a start of week date. The third and fourth columns contain integer values. I want each pivot table to have a row for each classification and the

Re: Creating pivot table and summation column

2016-08-11 Thread Javen O'Neal
Read these two bugs to make sure that isn't the problem first. I have not verified either bug yet. https://bz.apache.org/bugzilla/show_bug.cgi?id=59705 https://bz.apache.org/bugzilla/show_bug.cgi?id=59368 On Aug 11, 2016 8:30 AM, "Chris Stillwell" wrote: > I have a sheet with 4 columns of data t

Re: Creating pivot table and summation column

2016-08-11 Thread Chris Stillwell
Thanks, that very much looks like it could be the problem. I didn't see that there is a target release for the fix. I tried 3.15-beta2 which looks like the most current build and did not see the fix in there. Any expectations? Thanks again, Chris On Thu, Aug 11, 2016 at 10:45 AM, Javen O'Neal

Re: Creating pivot table and summation column

2016-08-11 Thread Javen O'Neal
The release version in bugzilla is usually used to indicate a version of POI which demonstrates the problem, preferably the most recent version that demonstrates the problem. If a bug gets fixed, you will see a comment referencing the commit that fixed the bug, the bug status will change to fixed,

Including poi-ooxml-schemas

2016-08-11 Thread Branden Visser
Hi all, there is this dependency: "org.apache.poi" % "poi-ooxml-schemas" % "3.15-beta2" If you include it, then I think it gives you some subset of ooxml-schemas 1.1, however not everything. For example, I've found this: === java.lang.NoClassDefFoundError: org/openxmlformats/schemas/wordprocessi

Re: Including poi-ooxml-schemas

2016-08-11 Thread Javen O'Neal
See https://poi.apache.org/faq.html#faq-N10025 Tldr; CTRImpl#getDrawingList is not called by the unit tests. If a unit test was added for this class, it would be included in poi-ooxml-schemas On Aug 11, 2016 1:03 PM, "Branden Visser" wrote: > Hi all, there is this dependency: > > "org.apache.po

Re: Including poi-ooxml-schemas

2016-08-11 Thread Branden Visser
That's crystal clear, thanks for the reference Javen! Cheers, Branden On Thu, Aug 11, 2016 at 5:19 PM, Javen O'Neal wrote: > See https://poi.apache.org/faq.html#faq-N10025 > > Tldr; CTRImpl#getDrawingList is not called by the unit tests. If a unit > test was added for this class, it would be inc