Reputation: 29
I want to write jmeter response to a excel file at particular cell. I have kept tika jar in jmeter lib/ext folder but when I open Jmeter I get below errors
Please let me know how can I overcome this error or are there any other apache POI libraries which I can use? Thanks
EDIT: I have freshly installed the Jmeter and that error is no more now thanks @Dmitri. I'm using "tika-app-2.6.0.jar" at lib folder I have below code in my beanshell sampler
but I'm getting below error when trying to run
Can someone help? Thanks
Upvotes: 0
Views: 134
Reputation: 168072
It looks like a Jar Hell, i.e. you have several instances of Apache POI libraries in your JMeter Classpath and the Java Classloader picks the wrong .jar combination.
Also "lib/ext" folder is for JMeter Plugins, all the dependency .jar files should go to "lib" folder.
And last but not the least according to JMeter Best Practices you should always be using the latest version of JMeter so consider
Upvotes: 1