[Bug 65976] java.io.IOException: Your InputStream was neither an OLE2 stream, nor an OOXML stream or you haven't provide the poi-ooxml*.jar in the classpath/modulepath - FileMagic: OOXML, having provi

2022-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65976

PJ Fanning  changed:

   What|Removed |Added

 Resolution|--- |INFORMATIONPROVIDED
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 65976] java.io.IOException: Your InputStream was neither an OLE2 stream, nor an OOXML stream or you haven't provide the poi-ooxml*.jar in the classpath/modulepath - FileMagic: OOXML, having provi

2022-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65976

--- Comment #6 from Rakhi Barayanan  ---
Thank you so much for the input Fanning.That worked.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: Log4j

2022-03-25 Thread Timothy Spear
Looks good me.

Thank you,

Tim

Get Outlook for Android

From: Dominik Stadler 
Sent: Friday, March 25, 2022 2:40:17 AM
To: POI Developers List 
Subject: Re: Log4j

The page is updated now to focus more on the state since Apache POI 5.1.0
and it also describes the options with slf4j a bit more.

Let us know if you think more content would be useful.

Thanks... Dominik.

On Thu, Mar 24, 2022 at 10:12 PM Timothy Spear  wrote:

> Ah, then the second line in the link below states POI from 5.1.0 uses log4j
> directly left myself and a few other developers confused. Probably should
> have just checked the code. Did not think of that until you replied
> https://poi.apache.org/components/logging.html
>
> Thanks,
>
> Tim
>
> On Thu, Mar 24, 2022 at 5:00 PM PJ Fanning 
> wrote:
>
> > We do use a facade - log4j-api - you can then choose which compatible
> impl
> > to use.
> > * log4j-core is one impl
> > * log4j-slf4j-impl is an impl that bridges to slf4j -
> > https://github.com/pjfanning/poi-gradle-example/blob/main/build.gradle
> > uses that bridge and use slf4j-simple as the log framework.
> >
> > https://poi.apache.org/components/logging.html has extra details.
> >
> >
> >
> >
> >
> >
> > On Thursday 24 March 2022, 21:50:13 GMT+1, Timothy Spear <
> n61...@gmail.com>
> > wrote:
> >
> >
> >
> >
> >
> > Curious,
> >
> > I could not find in any ticket, wiki or documentation. Why the switch
> from
> > a facade like SL4J to direct log4j as the logging engine? Going direct
> to a
> > logging engine has caused me module conflicts and classpath problems as
> > multiple competing logging engines are required by separate libraries.
> >
> > A facade such as SLF4J eliminates most of these types of issues.
> >
> > Tim
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
> > For additional commands, e-mail: dev-h...@poi.apache.org
> >
> >
>


[GitHub] [poi] pjfanning commented on pull request #314: Add equals() and hashCode() to PaneInformation

2022-03-25 Thread GitBox


pjfanning commented on pull request #314:
URL: https://github.com/apache/poi/pull/314#issuecomment-1078817648


   Thanks but could you write some test coverage?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[GitHub] [poi] daniel-shuy opened a new pull request #314: Add equals() and hashCode() to PaneInformation

2022-03-25 Thread GitBox


daniel-shuy opened a new pull request #314:
URL: https://github.com/apache/poi/pull/314


   Currently there is no way to compare `PaneInformation` equality except by 
manually comparing all its properties


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: Log4j

2022-03-25 Thread Dominik Stadler
The page is updated now to focus more on the state since Apache POI 5.1.0
and it also describes the options with slf4j a bit more.

Let us know if you think more content would be useful.

Thanks... Dominik.

On Thu, Mar 24, 2022 at 10:12 PM Timothy Spear  wrote:

> Ah, then the second line in the link below states POI from 5.1.0 uses log4j
> directly left myself and a few other developers confused. Probably should
> have just checked the code. Did not think of that until you replied
> https://poi.apache.org/components/logging.html
>
> Thanks,
>
> Tim
>
> On Thu, Mar 24, 2022 at 5:00 PM PJ Fanning 
> wrote:
>
> > We do use a facade - log4j-api - you can then choose which compatible
> impl
> > to use.
> > * log4j-core is one impl
> > * log4j-slf4j-impl is an impl that bridges to slf4j -
> > https://github.com/pjfanning/poi-gradle-example/blob/main/build.gradle
> > uses that bridge and use slf4j-simple as the log framework.
> >
> > https://poi.apache.org/components/logging.html has extra details.
> >
> >
> >
> >
> >
> >
> > On Thursday 24 March 2022, 21:50:13 GMT+1, Timothy Spear <
> n61...@gmail.com>
> > wrote:
> >
> >
> >
> >
> >
> > Curious,
> >
> > I could not find in any ticket, wiki or documentation. Why the switch
> from
> > a facade like SL4J to direct log4j as the logging engine? Going direct
> to a
> > logging engine has caused me module conflicts and classpath problems as
> > multiple competing logging engines are required by separate libraries.
> >
> > A facade such as SLF4J eliminates most of these types of issues.
> >
> > Tim
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
> > For additional commands, e-mail: dev-h...@poi.apache.org
> >
> >
>