Norm Radder wrote:
java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version;
That error looks like the class file was created by a younger version of java compared with the JVM's version of java
Thanks for taking out your precious time and replying to my post.
Yes, you are right, and this was the exact issue.
Actually I was using commons-lang3-3.11 version which I downloaded from
maven repository and it was built using java 1.8
When I found this, I downloaded the lower version of the commons-lang, which was compiled using java version 1.5
Since i was using java version 1.6 on my websphere, putting this new jar solved my problem.