0

我正在使用带有 jax-ws 2.2 的 weblogic 12c 来制作 web 服务客户端 ssl。

我的问题是当我创建一个javax.xml.ws.Servicein 时javax.xml.namespace.QName
javax.xml.namespace.QName qname = new javax.xml.namespace.QName("prueba1", "prueba1");
javax.xml.ws.Service create = javax.xml.ws.Service.create(url,qname);

当我尝试构建服务时,我得到:

java.lang.LinkageError: loader constraint violation: when resolving method "javax.xml.ws.Service.create(Ljavax/xml/namespace/QName;)Ljavax/xml/ws/Service;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, org/InstanceInterface, and the class loader (instance of <bootloader>) for resolved class, javax/xml/ws/Service, have different Class objects for the type javax/xml/namespace/QName used in the signature

谢谢你。

4

1 回答 1

1

错误是因为 jasperreport 和 JRE 有库 QName,如果您在 jasperreport 中排除 xmlapis 错误已经消失。发生此错误是因为我有相同的库具有相同的调用路径并且应用程序不知道我修复了谁的选择,因为我认为最好没有重复库而不标记要使用的库

于 2012-06-05T09:44:45.570 回答