jacob.dll 已加载到另一个类加载器中
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于每个 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.