Hi Sompol,
I have tried putting the two jar files in APP_INF/lib and WEB_INF/lib but still i am getting the same "java.lang.InternalError: erroneous handlers" in my console.
Main Topics
Browse All TopicsI am getting "java.lang.InternalError: erroneous handlers" in weblogic console when i am converting MS word document to PDF using Itext.jar, POI.jar JAR files in weblogic8.1 server in our J2EE application.I am able to convert the PDF without any errors if i put the two jar files in SERVER / LIB of weblogic.But in our PRODUCTION environment we don't have access to change WEBLOGIC environment..So we need to do it somehow at APPLICATION Level.I am trying to put the JARS in class path in our project.properties file but no success.Please help me out.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi,
The error message you're showing is very short.
Please you give me more error or exception stack trace message.
It's possible that you need to enable logging level in admin console to "info" level which the weblogic console will print more detail.
If you're not familiar with console, here is the place of setting.
your domain (left menu) --> your server (left menu) --> logging (right pane) --> .... somewhere you can find it there ....
Sompol
C:/work/wordpdf/wordtopdf/
Hi,
I changed the logging level to INFO but didn't have any change in the console after restarting my server.I am sending below the stack trace.
<Dec 18, 2007 7:36:40 AM PST> <Error> <HTTP> <BEA-101017> <[ServletContext(id=216937
java.lang.InternalError: erroneous handlers
at com.uprr.app.cam.webapp.ad
at com.uprr.app.cam.webapp.ad
Ok. I think this is class loader problem. Try this.
After you get EAR file, Using jar tool to extract and remove Itext.jar and POI.jar in APP-INF/lib or WEB-INF/lib. Then pack it to EAR again.
Deploy and test your application the error should be like this "NoClassDefFoundException"
If not, and you get the same error like "java.lang.InternalError: erroneous handlers", that mean you have a duplicated library presented in a classpath in somewhere else. and it might be possible that it has a different version with yours.
Because server/lib is the first place that class loader will load class to memory, If you put your jar there, it's sure that your application will get that class. But if you put in APP-INF/lib or WEB-INF/lib, it's the last place that class loader will load.
If you check and sure that it has a duplicate, I have solution, how to force your application to use class from APP-INF first. (do it by modifying weblogic.xml)
Let's investigate first.
Sompol
Business Accounts
Answer for Membership
by: sompol_kiatkamolchaiPosted on 2007-12-16 at 20:12:47ID: 20482891
Hi,
After you get EAR or WAR file, please you check APP-INF/lib or WEB-INF/lib whether those two jar files is presented.
Sompol.