-1

Does anyone have an idea why this error happens or where I can get the JAR file which contains this class?

Caused by: java.lang.NoClassDefFoundError: kodo/jdo/FatalInternalException
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:164)
        at $Proxy0.<clinit>(Unknown Source)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
        at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:588)
        at weblogic.iiop.ProxyDesc.readResolve(ProxyDesc.java:45)
        ... 45 more

My application uses wlclient.jar to perform a JNDI lookup... Thanks!

4

4 回答 4

0

use weblogic.jar instead of wlcient.jar

于 2010-01-14T16:33:51.263 回答
0

这应该在名为 kodo* 的 jar 中(例如 -jdo-)。这个 jar 应该在你的类路径中。

于 2009-04-16T20:36:44.317 回答
0

您可以为此使用jarFinder

于 2009-04-16T15:19:17.013 回答
0

我的类路径中有一个 jdo-* 文件,但它包含错误的类:

javax/jdo/JDOFatalInternalException.class

该包以 javax 而不是 kodo 开头,并且类名以 JDO 为前缀...

于 2009-04-17T05:57:21.833 回答