Hi,
I’m just in the process of moving from JDeveloper to (My)Eclipse [better integration with Tomcat 5.5 & JDK1.5], but have a runtime/debug error with code that is ok inside JDev.
My code uses a third party jar library, which inturn loads a Win32 DLL. I think the error I’m getting is indicating that the corojdk11.dll cannot be found in the system path, however, it is in the system PATH & other applications+JDev can use it. Do I need to add a PATH to MyEclipse manually? If so, then where?
I’m using Eclipse 3.1.0, MyEclipse 3.8.4, jdk1.5.0, WinXPPro.
The error:
Exception in thread “Thread-0” java.lang.UnsatisfiedLinkError: no COROJDK11 in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.neva.Coroutine.<clinit>(Coroutine.java:859)
at com.neva.DdeUtil.GetCurrentThreadId(DdeUtil.java:40)
at com.neva.DdeClientMessagePump.run(DdeClient.java:91)
at java.lang.Thread.run(Unknown Source)
Many thanks, Steve