symantec.itools.awt.shape.HorizontalLine horizontalLine1 = new symantec.itools.awt.shape.HorizontalLine();
This line of Java code produces the error below. Oddly enough, when I comment the line out or try to debug inserting a few printlns it still reports the error in the very SAME line (392), like it is using .java/.class from some other directory not the .class from the jar in the current directory, CLASSPATH and common/lib.
I am positive that the most recent .class is in TOMCAT's application classes directory, and generaly only 2 such files make problems, no others have problems with debugging.
Does anyone know why is it referring to some oldish .java (I cleaned the PC of any remnants and rebuilt everything from scrach many times) OR how can I solve this problem - especially because I have all symantec class hierarchy correct in a jar ??
java.lang.NoClassDefFoundError: symantec/itools/beans/VetoableChangeSupport (wrong name: com/symantec/itools/beans/VetoableChangeSupport)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at DPAddressClass.<init>(DPAddressClass.java:392)
at DPProjectDetailClass.init(DPProjectDetailClass.java:146)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
This line of Java code produces the error below. Oddly enough, when I comment the line out or try to debug inserting a few printlns it still reports the error in the very SAME line (392), like it is using .java/.class from some other directory not the .class from the jar in the current directory, CLASSPATH and common/lib.
I am positive that the most recent .class is in TOMCAT's application classes directory, and generaly only 2 such files make problems, no others have problems with debugging.
Does anyone know why is it referring to some oldish .java (I cleaned the PC of any remnants and rebuilt everything from scrach many times) OR how can I solve this problem - especially because I have all symantec class hierarchy correct in a jar ??
java.lang.NoClassDefFoundError: symantec/itools/beans/VetoableChangeSupport (wrong name: com/symantec/itools/beans/VetoableChangeSupport)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at DPAddressClass.<init>(DPAddressClass.java:392)
at DPProjectDetailClass.init(DPProjectDetailClass.java:146)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)