jacob.dll 已加载到另一个类加载器中

发布于 2025-01-07 07:41:47 字数 593 浏览 1 评论 0原文

我在java中实现了一个web服务,也在java中实现了web服务客户端。两个 webservice 和 webservice 客户端都在不同的项目中,我是使用 jacob 创建的 dll。

我的 Web 服务和 Web 服务客户端位于同一台计算机上。现在,每当我使用 Web 服务客户端调用 Web 服务时,都会遇到以下异常。

异常

org.apache.jasper.JasperException:javax.xml.ws.soap.SOAPFaultException:本机库C:\ Program Files(x86)\ Java \ jdk1.6.0_24 \ bin \ jacob.dll已在另一个类加载器中加载 根本原因

javax.xml.ws.soap.SOAPFaultException:本机库 C:\Program Files (x86)\Java\jdk1.6.0_24\bin\jacob.dll 已在另一个类加载器中加载 根本原因

java.lang.UnsatisfiedLinkError: Native Library C:\Program Files (x86)\Java\jdk1.6.0_24\bin\jacob.dll 已在另一个类加载器中加载

I am implmented a webservice in java and webservice client also in java. both the webservice ane webservice client are in different project and i am created dll using jacob.

My Webservice and webservice client is on same computer.now whenever i am calling the webservice using webservice client than encounter following exception.

exception

org.apache.jasper.JasperException: javax.xml.ws.soap.SOAPFaultException: Native Library C:\Program Files (x86)\Java\jdk1.6.0_24\bin\jacob.dll already loaded in another classloader
root cause

javax.xml.ws.soap.SOAPFaultException: Native Library C:\Program Files (x86)\Java\jdk1.6.0_24\bin\jacob.dll already loaded in another classloader
root cause

java.lang.UnsatisfiedLinkError: Native Library C:\Program Files (x86)\Java\jdk1.6.0_24\bin\jacob.dll already loaded in another classloader

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吹梦到西洲 2025-01-14 07:41:48

对于每个 JVM 实例,jacob.dll 只能加载一次。
如果 jacob.jar 库被加载多次,它也会尝试多次加载 jacob.dll。

为了避免这种情况,请从两个 Web 服务中删除 jacob.jar,并将其放置到两个 Web 服务共享的类加载器可以找到的某个位置,这样 jacob.jar只会加载一次。例如,如果您使用的是 tomcat,请将 jacob.jar 放在该 tomcat 的 /lib 目录中。

jacob.dll can only be loaded once for each instance of a JVM.
If the library jacob.jar is loaded more than once, it will try to load jacob.dll more than once, too.

To avoid that, remove the jacob.jar from both webservices and put it in some place where it can be found by a classloader that both webservices share, that way jacob.jar will be loaded only once. For example, if you are using tomcat, put the jacob.jar in the /lib directory of that tomcat.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文