I'm getting lots of java.lang.VerifyError when trying to record my app.
Here is an example:
java.lang.VerifyError: (class: org/zkoss/zk/ui/WebApps, method: getFeature signature: (Ljava/lang/String;)Z) Expecting to find object/array on stack
at org.zkoss.zk.ui.http.WebManager.(WebManager.java:112)
at org.zkoss.zk.ui.http.HttpSessionListener23.contextInitialized(HttpSessionListener23.java:140)
This of the ZK. But I also get the same for H2 database.
What should/can I do when this happens?
Eclipse e4 Kepler SR1
Chronon 3.20.1.190
-
which jvm version are you using? can you show me all your entire command line args
-
-
java version "1.7.0_55"
Java(TM) SE Runtime Environment (build 1.7.0_55-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.55-b03, mixed mode)
-XX:MaxPermSize=256m
-Xmx1048m
-Xms1024m
I tried to add -noverify as suggested by other posts but then, the JVM crashes with a core dump. -
-
add this to the arguemnt list:
-XX:-UseSplitVerifier
dont use -noverify. it turns the verifier off completely. -