简体   繁体   English

将java应用程序部署到weblogic时出错

[英]Error deploying java application to weblogic

I'm trying to deploy an application I have to look into to weblogic 10.3.6.0. 我正在尝试部署一个我必须研究weblogic 10.3.6.0的应用程序。 Nad I get the following error: 我得到以下错误:

weblogic.wsee.jaxws.framework.policy.advertisementimpl.AdvertisementHelperImpl registerExtension
WARNING: Registering oracle.j2ee.ws.wsdl.extensions.addressing.AddressingExtensionRegistry extension failed; java.lang.ClassNotFoundException: oracle.j2ee.ws.wsdl.extensions.addressing.AddressingExtensionRegistry
weblogic.wsee.jaxws.spi.WLSServiceDelegate addWsdlDefinitionFeature
SEVERE: Failed to create WsdlDefinitionFeature for wsdl location: http://localhost:7001/banking-integration-test/ws?wsdl, error: com.sun.xml.ws.wsdl.parser.InaccessibleWSDLException, message: 2 counts of InaccessibleWSDLException.

Wsdl does exist at the exact path. Wsdl确实存在于确切的路径上。 What might be the problem? 可能是什么问题? What is missing class AddressingExtensionRegistry? 什么是缺少类AddressingExtensionRegistry? Thank you for your answers. 谢谢您的回答。

AddressingExtensionRegistry lives in com.oracle.ws.orawsdl_x.xxjar if this is not in your common modules it can be placed in the lib folder of your domain. AddressingExtensionRegistry存在于com.oracle.ws.orawsdl_x.xxjar如果这不在您的公共模块中,则可以将其放在域的lib文件夹中。

If your web service requires authentication you will need to add com.oracle.ws.http_client_1.2.0.0.jar as well to avoid java.lang.NoClassDefFoundError: HTTPClient/AuthorizationPrompter . 如果您的Web服务需要身份验证,则还需要添加com.oracle.ws.http_client_1.2.0.0.jar以避免java.lang.NoClassDefFoundError: HTTPClient/AuthorizationPrompter

In both cases make sure that you don't have duplicates in your common modules and lib folders as this can cause problems. 在这两种情况下,请确保您的公共模块和lib文件夹中没有重复项,因为这可能会导致问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在WebLogic Server中部署应用程序时出错:12.2.1.3.0引起:java.lang.ClassNotFoundException:WebLogic_12 - Error Deploying application in WebLogic Server: 12.2.1.3.0 Caused By: java.lang.ClassNotFoundException: WebLogic_12 通过Weblogic部署Java应用程序(主类) - Deploying Java Application(Main Class) over Weblogic 在Weblogic 12.1.3.0上部署Spring应用程序期间出错 - Error During deploying Spring application on Weblogic 12.1.3.0 在weblogic 10.3中部署Web应用程序时出错 - Error while deploying web application in weblogic 10.3 将JAVA应用程序部署到weblogic 11g时遇到的问题 - issues deploying a JAVA application to weblogic 11g 将Spring应用程序部署到Weblogic 12c时出错 - Error while deploying spring application to Weblogic 12c 在 WebLogic 12.1.3 上部署应用程序时出现“找不到 Struts 调度程序”错误 - "The Struts dispatcher cannot be found" error while deploying application on WebLogic 12.1.3 在Weblogic 10.3上使用ant部署WAR时出现“Java堆空间”错误 - “Java heap space” error when deploying WAR with ant on Weblogic 10.3 在Weblogic 12.1.3上部署Jersey应用程序 - Deploying a Jersey application on Weblogic 12.1.3 部署到weblogic时的Java LinkageError - Java LinkageError while deploying to weblogic
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM