java.lang.VerifyError: after installing JDK1.5

Hi. Can someone help me on this matter;

I'm using Jbuilder 2005 with java version 1.5.0_01-b08. Now i'm having all kinds of problems with code that used to run / compile without any trouble in JDK1.4. I've read in a old topic ( http://forum.java.sun.com/thread.jspa?threadID=514766&start=15&tstart=0 ) to use the -noverify option while compiling. This works, however while running the applet on a webserver (Tomcat) I get the same verify error as I used to have

Can someone please tell me how to use the -noverify option with the html applet tag or is there a better way to solve this? (patch?)

[624 byte] By [Lunatic21Ba] at [2007-10-1 7:19:13]
# 1

The API documentation may have a clue as to where the problem is.

In java.lang.VerifyError doc, it says

"Thrown when the 'verifier' detects that a class file, though well formed, contains some sort of internal inconsistency or security problem."

and in it's superclass, java.lang.LinkageError, it says

"Subclasses of LinkageError indicate that a class has some dependency on another class; however, the latter class has incompatibly changed after the compilation of the former class."

This indicates that the problem is not with the class, but with another [referenced] class. This is also supported by a post in the thread you reference where it was stated that by recompiling everything, the problem disappeared.

ChuckBinga at 2007-7-9 18:28:19 > top of Java-index,Administration Tools,Sun Connection...