- This topic has 4 replies, 3 voices, and was last updated 21 years, 3 months ago by ipreuss.
-
AuthorPosts
-
fredatworkMemberI would like to evaluate your product.
I downloaded the trial version for Linux.
I started the EnterpriseWorkbenchInstaller_020501.bin executable and I get this exception (cannot find javax.swing.JDialog).
Strange: from Eclipse, I can import javax.swing.JDialog in a java file with no problem.
Any idea ?
Fred
[root@localhost workbench]# EnterpriseWorkbenchInstaller_020501.bin
Preparing to install…
Extracting the installation resources from the installer archive…
Configuring the installer for this system’s environment…Launching installer…
Warning: -Xmx50331648 not understood. Ignoring.
Warning: -Xms16777216 not understood. Ignoring.
Exception in thread “main” java.lang.InternalError: Unexpected exception while defining class ZeroGs: java.lang.ClassNotFoundException: javax.swing.JDialog
at 0x4028115f: java.lang.Throwable.Throwable(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x4027408e: java.lang.Error.Error(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x40281542: java.lang.VirtualMachineError.VirtualMachineError(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x40275a92: java.lang.InternalError.InternalError(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x40272ff2: java.lang.ClassLoader.defineClass(java.lang.String, byte[], int, int, java.security.ProtectionDomain) (/usr/lib/libgcj.so.3)
at 0x40272dbb: java.lang.ClassLoader.defineClass(java.lang.String, byte[], int, int) (/usr/lib/libgcj.so.3)
at 0x4030b29b: java.net.URLClassLoader.findClass(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x402606d7: gnu.gcj.runtime.VMClassLoader.findClass(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x40272cac: java.lang.ClassLoader.loadClass(java.lang.String, boolean) (/usr/lib/libgcj.so.3)
at 0x40260dcc: _Jv_FindClass(_Jv_Utf8Const, java.lang.ClassLoader) (/usr/lib/libgcj.so.3)
at 0x4025d1fd: java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.3)
at 0x40253809: _Jv_BytecodeVerifier.verify_instructions_0() (/usr/lib/libgcj.so.3)
at 0x40249697: _Jv_VerifyMethod(_Jv_InterpMethod) (/usr/lib/libgcj.so.3)
at 0x40241a24: _Jv_PrepareClass(java.lang.Class) (/usr/lib/libgcj.so.3)
at 0x40260568: java.lang.ClassLoader.linkClass0(java.lang.Class) (/usr/lib/libgcj.so.3)
at 0x40273073: java.lang.ClassLoader.resolveClass0(java.lang.Class) (/usr/lib/libgcj.so.3)
at 0x4025e99c: java.lang.Class.initializeClass() (/usr/lib/libgcj.so.3)
at 0x4025d224: java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.3)
at 0x4025d2bf: java.lang.Class.forName(java.lang.String) (/usr/lib/libgcj.so.3)
at 0x402c60a0: gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.3)
at 0x40267fdc: _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.3)
at 0x4023478c: _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean) (/usr/lib/libgcj.so.3)
at 0x08048900: __gcj_personality_v0 (java.compiler=NONE)
at 0x420158d4: __libc_start_main (java.compiler=NONE)
at 0x080486c1: _Jv_RegisterClasses (java.compiler=NONE)
👿
Scott AndersonParticipantIt looks like it’s launching with a very old JVM. You’ll need at least 1.3.1 to run it.
–Scott
MyEclipse Support
fredatworkMemberHello Scott,
I’m using a 1.4.2 J2SE SDK (JAVA_HOME is set correctly) and a 1.3.1 J2EE SDK (J2EE_HOME is set).
Anymore idea on this one ?
Fred.
PS: I’m using lomboz currently and I’m tired of it. I’d like to see if your workbench is better. If yes, I’ll buy it.
Scott AndersonParticipantWarning: -Xmx50331648 not understood. Ignoring.
Warning: -Xms16777216 not understood. IgnoringThese two warnings still lead me to believe you’re running the installer with a very old JVM. These options were added quite awhile ago and that fact that they seem to be unsupported is troubling.
When you open a shell and type ‘which java’ or ‘which javaw’ do you get back what you expect? Try the execute both with the -version option. This isn’t a 1.4.2 JDK or the -Xms -Xmx options would be supported.
What flavor of Linux are you using?
I’m using lomboz currently and I’m tired of it.
We hear that alot around here. Be sure that you install MyEclipse on a CLEAN Eclipse 2.1.0 or 2.1.1 installation. Don’t install it with Lomboz still spread about your plugins directory.
I’d like to see if your workbench is better. If yes, I’ll buy it.
I have no doubt that you’ll find it vastly superior. We look forward to your order, once we get this little install problem straightened out.
–Scott
MyEclipse Support
ipreussMemberFred,
if you type “java -version” on the command prompt, what output do you get?
-
AuthorPosts